Character filter function, filter repeating string

Source: Internet
Author: User

The actual effect is not big, sometimes use, save as later reference. If the predestined person sees, asks to propose the optimization plan

1 Use[Master]
2GO
3/** * * * object:userdefinedfunction [dbo].    [Charfilter] Script date:04/06/2016 17:20:16 * * * * **/
4SETAnsi_nulls on
5GO
6SETQuoted_identifier on
7GO
8--=========================================================
9--filter the repeating character in the string Charfilter @str as the input string,
Ten@symSeparator
One--The character length is allocated according to the actual demand
A --=========================================================
-CREATEFUNCTION[dbo].[Charfilter](@strvarchar(8000),@symvarchar( -))
-RETURNSvarchar(8000)
the as
-BEGIN
-Declare@returnvarchar(8000),@retvarchar(8000)
-Select@str=@str+','
+ whilecharindex(@sym,@str)>0
-begin
+ Select@ret=substring(@str,1,charindex(@sym,@str)-1)
A
atSelect@return=IsNull(@return+@sym,"')+@ret
-
-Select @str=Replace(@str,@ret+@sym,"')
-End
-RETURN@return

- END

Character filter function, filter repeating string

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.