Search Results

Search: Posts Made By: ctac_
1,230
Posted By Chubler_XL
You could also use the -o option to egrep $ ...
You could also use the -o option to egrep

$ echo PO_CREATE12457888888888889SK1234567878744551111111111SK89456321145789955455555SK8888888815788852222 | egrep -o "SK.{8}"
SK12345678
SK89456321...
7,200
Posted By RudiC
The regex "*\([^|"]*\)"* applied to ...
The regex
"*\([^|"]*\)"* applied to
abc|123"|gh-ch"|23.067"will yield the first parenthesized subexpression to be used by the back reference
abc
123
gh-ch
23.067
Any existing double quotes...
5,704
Posted By Don Cragun
If what you want to do is separate records at...
If what you want to do is separate records at points where the last character on a line is a <period>, <question-mark>, or <exclamation-point>, you probably want to use:
RS="[.?!]$"
as rdrtx1...
Showing results 1 to 3 of 3

 
All times are GMT -4. The time now is 04:54 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy