in reply to How to get the required names
my @name_part = grep {defined && /[a-zA-Z]/} split /[^a-zA-Z]/, $name;
This of course is probably unrealistic. In that case, you will need to do some actual parsing not just regex matching. If the above suggestion doesn't work, come back with specifics and we will see if we can't be more helpful.
Cheers - L~R
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to get the required names
by dsheroh (Monsignor) on Dec 25, 2007 at 17:25 UTC |