在Linux中,可以使用命令行工具和正则表达式来剥离字符串中的单引号和双引号。以下是一些可以尝试的方法:
sed
命令:echo 'string with "quotes" and \'single quotes\'' | sed "s/'//g" | sed 's/"//g'
tr
命令:echo 'string with "quotes" and \'single quotes\'' | tr -d \"\'
awk
命令:echo 'string with "quotes" and \'single quotes\'' | awk '{gsub(/["\047]/,"")}1'
这些命令将删除字符串中的所有单引号和双引号,并输出不带引号的字符串。
领取专属 10元无门槛券
手把手带您无忧上云