in reply to regex for text manipulation
o/p: Today is wednesday.Tomorrow is thursday#!/usr/local/bin/perl my $str = "today is wednesday.tomorrow IS THURSDAY"; $str =~ s/^(\w)(.*?)([.])(\w)(.*)/uc($1).lc($2).lc($3).uc($4).lc($5)/g +ei; print $str;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: regex for text manipulation
by sen (Hermit) on Nov 07, 2007 at 07:50 UTC |