"Sebadamus" <[EMAIL PROTECTED]> wrote:
>In Visual I used the MID function to get a part of a text... por ex. "price
>= 33.10" and I could get using "=" and EOL as delimiters the price "33.10"

this might work:

$line =~ /=\s(.+)\n/s and $price = $1;

where $line is your part of text and $price is price.



-- 
Matija

Reply via email to