Re: Change \'[A-Z] to \'[a-z]

2003-07-15 Thread Tomas Johansson
On Wed, 2003-07-16 at 00:26, Tomas Johansson wrote: > Yes, or if you have an array of strings, and want to replace all capital > letters in all strings, maybe this could be a solution: > > sub toLower > { > my @parms = @_; > for (@parms) { tr/A-Z/a-Z/ } > return wan

Re: Change \'[A-Z] to \'[a-z]

2003-07-15 Thread Tomas Johansson
On Wed, 2003-07-16 at 00:19, Geoff Thurman wrote: > In perl, how about > > $_ = "Can'T eat shan'T eat Jane'S cooking."; > s/'T /'t /g; > s/'S /'s /g; > print $_; > > Assuming it's only T and S. Yes, or if you have an array of strings, and want to replace all capital letters in all strings, maybe