Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
and I want to match only 0410.1 from that string , I tried:$string1="version: 0410.1";
but no luck ,, can someone advice ? thanks$s_version =~ /version:\s([\w]+[\.\w+]*/;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: matching string
by ikegami (Patriarch) on Aug 23, 2004 at 20:12 UTC | |
|
Re: matching string
by insensate (Hermit) on Aug 23, 2004 at 20:02 UTC | |
|
Re: matching string
by ysth (Canon) on Aug 23, 2004 at 23:43 UTC |