
String::Gsub - regex on string object

Version 0.04

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"

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

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

Create new instance.
process global substitute, and return new object.
like gsub, but replace self object and return itself.
process one substitute, and return new object.
like sub, but replace self object and return itself.
returns string value contained in.

YAMASHINA Hio, <hio at cpan.org>

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.

You can find documentation for this module with the perldoc command.
perldoc String::Gsub
You can also look for information at:

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


Copyright 2006 YAMASHINA Hio, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.