标签:
字符串截断函数是指:Stuff 和 SubString,字符串查找函数是:CharIndex 和 PatIndex
一,SubString 截取子串
最常用的字符串函数,用于截取特定长度的子串。
SUBSTRING ( expression ,start , length )
参数说明:
例如:字符串 abcdef,截取从第二个字符开始,共2个字符的子串是:bc
select substring(‘abcdef‘,2,2)
二,Stuff 删除字符串的指定部分,并插入相应的字符,即将字符串中指定部分替换为新的字符串
Stuff函数从字符串指定的开始位置,删除指定长度的字符串,并从该位置插入新的字符串。
It deletes a specified length of characters in the first string at the start position and then inserts the second string into the first string at the start position.
STUFF ( character_expression , start , length , replaceWith_expression )
参数说明:
例如:从不同位置截断字符串abcdef,查看返回结果
declare @str varchar(6) set @str=‘abcdef‘ select stuff(@str,7,1,‘‘), stuff(@str,0,1,‘‘), stuff(@str,3,7,‘‘), stuff(@str,3,7,‘12345‘)
使用stuff函数,必须注意两点:
三,CharIndex 从字符串中查找字符
从字符串search中查找另一个字符串find,如果find存在于search中,返回find在search中第一次匹配的开始位置;如果find不存在于search中,返回0;
CHARINDEX ( find ,search [ , start ] )
参数说明:
例如:从字符串abcbcdef的不同位置,查找不同的字符
select charindex(‘bc‘,‘abcbcdef‘), charindex(‘bc‘,‘abcbcdef‘,3), charindex(‘bce‘,‘abcbcdef‘)
结果分析:
四,PatIndex 从字符串中按照Pattern查找特定字符
PatIndex 从字符串中查找pattern,返回第一次匹配成功的开始位置;如果匹配失败,返回0;
Returns the starting position of the first occurrence of a pattern in a specified expression, or zeros if the pattern is not found.
PATINDEX ( ‘%pattern%‘ , expression )
pattern:样式字符,能够使用通配符(%,_,[],^),必须以通配符%开始和结尾;
示例:从字符串abcbcdef的匹配不同的pattern
select patindex(‘%bc%‘,‘abcbcdef‘), patindex(‘%b_b%‘,‘abcbcdef‘), patindex(‘%b[^c]b%‘,‘abcbcdef‘), patindex(‘%bce%‘,‘abcbcdef‘)
结果分析:
参考文档:
PATINDEX (Transact-SQL)
CHARINDEX (Transact-SQL)
SUBSTRING (Transact-SQL)
STUFF (Transact-SQL)
标签:
原文地址:http://www.cnblogs.com/ljhdo/p/4873740.html