标签: regex
我想使用正则表达式检查给定字符串,如果任何单词包含例如q-w个字符,则不得包含ı-ş个字符。
q-w
ı-ş
given string = > abc qşl def , not matches given string = > abc qsl def , matches
最诚挚的问候, HH
答案 0 :(得分:0)
试试这个:
^[^ı-ş]*[q-w][^ı-ş]*$|^[^q-w]*$
Here is a demonstration。 这是你的意思吗?