
wickedxter
User
Sep 7, 2011, 5:43 PM
Views: 1809
|
|
Re: [arokiamary] Urgent help needed
|
|
|
s/// desnt ignore it replaces whats matches in the first // and replaces it wil the next // so s/a/B/ will replace a with B, so are you trying to capture everything before the RG 2 and Relegation? if so you'll need to rethink your regex to either capture from the beginning of the string or you change your code to whats below and it will remove whats matched by the regex.
#captures the Reg. and RG 2 and removes them $vldbString =~ s/Regulation\s+\d+\s*//; $vldbString =~ s/RG\s*\d*//; #capture everything before regulations $vldbString =~ /^(.*)Regulations|REGULATIONS/; [\code]
(This post was edited by wickedxter on Sep 7, 2011, 5:43 PM)
|