Search Results

Search: Posts Made By: ed_9
2,967
Posted By MadeInGermany
perl -pe 's/\bME_//g' FILEA > FILEB
perl -pe 's/\bME_//g' FILEA > FILEB
2,967
Posted By Scrutinizer
Note sed -r is GNU sed. With it, you could also...
Note sed -r is GNU sed. With it, you could also do this:
sed 's/\<ME_//g' file
2,967
Posted By RudiC
Try using EREs (extended regexes):sed -r 's/(^|,|...
Try using EREs (extended regexes):sed -r 's/(^|,| )ME\_/\1/g' file3
ABC_X,DME_X, FCX_X
Showing results 1 to 3 of 3

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