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

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

c# - Exception when attempting to modify Dictionary -