Hi
I have a @ delimited file containing lines like
I would like to strip off the zeroes if they are the only values between two @ symbols or if the 2 delimiters have a few zeroes and a "{" character.
I tried below code and it seems to do this only for alernate elements.
Any help is appreciated
I have a @ delimited file containing lines like
Code:
@00{@00{@00000{@
@0{@000{@
I tried below code and it seems to do this only for alernate elements.
Code:
sed 's/@[0]*{@/@{@/g' inputfile.txt
Any help is appreciated