Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: regexp help

by si_lence (Deacon)
on Dec 15, 2011 at 14:20 UTC ( [id://943741]=note: print w/replies, xml ) Need Help??


in reply to regexp help

I am not sure what the variation in your data can be. For the example given, the following should to the trick.
my $input = '((113000.00 Nos.) + (250000.00 Nos.) ++ (1) )'; $input =~ s/\(|\)| Nos\.//g; $input =~ s/\+\+/+/g;
That said, in the long run it probaly will help you to get familiar with regular expressions by reading something like perlre

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://943741]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (5)
As of 2024-04-20 02:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found