I have been working on some data extraction. I am using textpipe
pro as well as Easy pattern helper.. I need to extract two lines
that read like this
Sales:
$200.12 bil
There is the line break in it and the numbers in red are the
variable chars.
I can get it to pull up using the Perl pattern
(?:Sales:)
(?:(?:[[:digit:]!"#$%&'()*+,\-./\\:;=?@\[\]\^_`{}~|]{1,7}?))(?:
bil) ........ which is the same as this EasyPattern
Sales:
[ longest 1 to 7 digits or <!"#$%&'()*+,-./\:;=?@[]^_`{}~|> ] bil
But what it's doing is pulling two separate lines so I get Sales:
and the number that goes with it.. plus a million other numbers that
match that "number" pattern on these documents.. The entire reason
I'm using the word Sales: is that it's the only way to distinguish
that number from all the rest of them!! I've tried everything I can
think of in between there like [newline] [linefeed] [return] .. (of
course their Perl conversions) .. but nothing works!!
Can someone please help me find a way to extract those two lines
together? Can that be done?
I have been working on this forever now and I have a major deadline
on this.. Please Help!!! :)
Thanks,
Tori