正则表达式是如何工作的,因此在句子的开头和结尾都不允许使用” 个字符。示例:
Test "if" that works --> is allowed
"Test" if that works --> is not allowed
Test if that "works" --> is also not allowed
所以引号只允许在句子的中间。
答案 0 :(得分:2)
答案 1 :(得分:1)
您需要根据所使用的语言进行检查,但是您可以使用正则表达式'^\"|\"$'
来捕获字符串开头或结尾带有引号(“)的字符串。< / p>