sqlserver中去除字符串中连续的分隔符的sql语句

前端之家收集整理的这篇文章主要介绍了sqlserver中去除字符串中连续的分隔符的sql语句前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

以下测试用于去除任何字符串中连线的分隔符
<div class="codetitle"><a style="CURSOR: pointer" data="18250" class="copybut" id="copybut18250" onclick="doCopy('code18250')"> 代码如下:

<div class="codebody" id="code18250">
--去除字符串中连续的分隔符
declare @str nvarchar(200)
declare @split nvarchar(200),@times int
set @str='中 国1 2 34 55 5 6 7 7';--字符
set @split=' '; --分隔符
select @times=(len(@str)-len(replace(@str,@split+@split,'')))/2
while @times>0
begin
set @str=REPLACE(@str,' ')
set @times=@times-1
end
select @str

希望对大家有作用 测试结果: 中 国1 2 34 55 5 6 7 7 (1 行受影响)

原文链接:https://www.f2er.com/mssql/63822.html

猜你在找的MsSQL相关文章