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

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -