"David Samuelsson" <[EMAIL PROTECTED]>
??????:[EMAIL PROTECTED]
...
> more regexps..
>
> $_ comes in this form:
>
> servername:D:\CC_Storage\Views\EUSDNKG_Madeleine_Tae68_view.vws [uuid
74a6b3b0.d1cd11d4.896e.00:b0:d0:83:b4:9b]
>
> i want $_ to be just the uuid number that is:
74a6b3b0.d1cd11d4.896e.00:b0:d0:83:b4:9b
>
> how do i get that the easiest way? all $_ are the same they are all within
brackets [text here variables, exept . and :]
>
> //Dave
>
>
i think this is more efficiency
eg.
 $a = "servername:D:\CC_Storage\Views\EUSDNKG_Madeleine_Tae68_view.vws [uuid
74a6b3b0.d1cd11d4.896e.00:b0:d0:83:b4:9b]";
     @a = split (/\[uuid/,$a);
    chop($a[1]);



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to