in reply to how can i split a string to an array and convert it into regular expression
So you need to figure out what delimeter is. By default it is space.@array = split /delimeter/, $my_string;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: how can i split a string to an array and convert it into regular expression
by Anonymous Monk on Dec 08, 2007 at 18:53 UTC | |
by ikegami (Patriarch) on Dec 08, 2007 at 18:59 UTC |