regex - remove quotes from specific field - integer between quotes -
i want remove quotes specific field there integer between quotes.
from line : "aaa","99"
to line : "aaa",99
using sed
:
s='"aaa","99"' sed 's/"\([0-9]*\)"/\1/g' <<< "$s" "aaa",99
Comments
Post a Comment