Page 1 of 1

Filter for selecting lines beginning/ending with characters

Posted: Wed Nov 30, 2005 4:12 pm
by gmb1994
How do we select (extract) lines beginning with (or, ending with) a specific character (letter, digit, symbol, etc.) or sequence of characters, for example:

+ select lines beginning/ending with the letter 'a'
+ select lines beginning/ending with 'abc'
+ select lines beginning/ending with '$*3abc'

Posted: Mon Dec 05, 2005 8:56 am
by DataMystic Support
select lines beginning/ending with the letter 'a'

^a
/
a$

select lines beginning/ending with 'abc'

^abc
/
abc$

select lines beginning/ending with '$*3abc'

^\$\*3abc
/
\$\*3abc$