正则表达式的句子不应以“

时间:2018-08-20 10:44:19

标签: regex expression

正则表达式是如何工作的,因此在句子的开头和结尾都不允许使用个字符。示例:

Test "if" that works --> is allowed
"Test" if that works --> is not allowed
Test if that "works" --> is also not allowed

所以引号只允许在句子的中间。

2 个答案:

答案 0 :(得分:2)

这应该做到:

^(?!").*(?<!")$

Regex101

答案 1 :(得分:1)

您需要根据所使用的语言进行检查,但是您可以使用正则表达式'^\"|\"$'来捕获字符串开头或结尾带有引号(“)的字符串。< / p>