String::Gsub - regex on string object


String-Gsub documentation  | view source Contained in the String-Gsub distribution.

Index


NAME

Top

String::Gsub - regex on string object

VERSION

Top

Version 0.04

SYNOPSIS

Top

 use String::Gsub qw(gstr);

 print gstr("abcabc")->gsub(qr/b/,sub{uc$1}); # ==> "aBcaBc"
 print gstr("hw")->gsub(qr/h/,"Hello")->gsub(qr/w/,"World"); # ==> "HelloWorld"

EXPORT

Top

This module can export gstr. No functions are exported by default.

FUNCTIONS

Top

gstr($str)

Alias for String::Gsub->new($str);

METHODS

Top

$pkg->new($str)

Create new instance.

$this->gsub($regexp, $replacement)

process global substitute, and return new object.

$this->gsubx($regexp, $replacement)

like gsub, but replace self object and return itself.

$this->sub($regexp, $replacement)

process one substitute, and return new object.

$this->subx($regexp, $replacement)

like sub, but replace self object and return itself.

$this->stringy()

returns string value contained in.

AUTHOR

Top

YAMASHINA Hio, <hio at cpan.org>

BUGS

Top

Please report any bugs or feature requests to bug-string-gsub at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=String-Gsub. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

Top

You can find documentation for this module with the perldoc command.

    perldoc String::Gsub

You can also look for information at:

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/String-Gsub

* CPAN Ratings

http://cpanratings.perl.org/d/String-Gsub

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=String-Gsub

* Search CPAN

http://search.cpan.org/dist/String-Gsub

SEE ALSO

Top

String::Gsub, String::Gsub::Functions

ACKNOWLEDGEMENTS

Top

COPYRIGHT & LICENSE

Top


String-Gsub documentation  | view source Contained in the String-Gsub distribution.