Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: split delimiters

by busunsl (Vicar)
on Mar 27, 2001 at 01:26 UTC ( [id://67340]=note: print w/replies, xml ) Need Help??


in reply to split delimiters

Since ( and [ are special characters in regular expressions, you have to escape them:
split /\(/, 'some(odd(string'; split /\[/, 'next[odd[string';

Replies are listed 'Best First'.
Re: Re: split delimiters
by Daddio (Chaplain) on Mar 27, 2001 at 04:14 UTC
    Or, just in case both of these delimiters should be used for one split...

    split /[\[\(]/, 'some(next[really(really(odd[string';
      Well, in that case you don't have to escape them, because they are in sqare brackets:
      split /[([]/, 'some(wierd[string';

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (3)
As of 2024-04-26 01:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found