本文介绍了就像正则表达式没有给出正确的结果的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

declare @test varchar(50)
set @test='sad@fd'
if @test LIKE '%[a-zA-Z0-9  ./,()?''+-]%'
print 'yes'
else
print 'no'



我的上述代码给出是的结果,因为它应该给不,因为我不允许在正则表达式中使用'@'。是否有任何错误。

我的要求是允许字母数字字符串./,()?'+ - 如果字符串包含,则允许使用此字符。


My above code giving yes result as it should give no as i am not allowing '@' in regular expression.Is there anything wrong.
My requirement is allow alpha numeric string with "./,()?''+-" this character allowed if string contains.

推荐答案



这篇关于就像正则表达式没有给出正确的结果的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-21 00:36