为什么对某些特殊字符使用 PATINDEX 替换失败



我们尝试使用下面的(简化(命令从字符串中删除某些特殊字符,这是我们在搜索后看到的最常见的解决方案。但是,使用某些特殊字符时,结果不一致。谁能解释为什么?而且,更好的是,任何人都可以提供有效的解决方案吗?

SQL Server 2014

在下面的第一种情况下,"@"被删除,但在包含它的所有其他情况下 (2+5( 它不会被删除。与第 3 种情况相同:删除空格,但不删除"&";在第 5 种情况下,删除空格,但不删除"@"。其他组合也有类似的问题。

谢谢。 声明@str varchar(50( = '1st Ave @ 1st St FL-3 Rm 323& New York NY'

declare @Pindex1  varchar(10) = '%[@]%'
declare @Pindex2  varchar(10) = '%[@& ]%'
declare @Pindex3  varchar(10) = '%[& ]%'
declare @Pindex4  varchar(10) = '%[ ]%'
declare @Pindex5  varchar(10) = '%[@ ]%'
Select @str as String, @Pindex1 as Pattern ,Replace(@str, Substring(@str, PatIndex(@Pindex1,@str), 1), '') as PIndex1_result
Select @str as String, @Pindex2 as Pattern ,Replace(@str, Substring(@str, PatIndex(@Pindex2,@str), 1), '') as PIndex2_result
Select @str as String, @Pindex3 as Pattern ,Replace(@str, Substring(@str, PatIndex(@pindex3,@str), 1), '') as PIndex3_result
Select @str as String, @Pindex4 as Pattern ,Replace(@str, Substring(@str, PatIndex(@Pindex4,@str), 1), '') as PIndex4_result
Select @str as String, @Pindex5 as Pattern,Replace(@str, Substring(@str, PatIndex(@pindex5,@str), 1), '') as PIndex5_result
我想

你可能对SQL Servers模式有误解。 考虑第二种模式:

declare @Pindex2  varchar(10) = '%[@- ]%'

这不能匹配任何模式。 为什么? '@' 的 ASCII 值为 64,对于空格,为 32。 这些值之间没有任何反应。 它与'%[b-a]%'相似,也没有任何匹配。

我认为问题在于您对SQL Server字符串模式的理解。

相关内容

  • 没有找到相关文章

最新更新