[C #] replaces characters/strings based on index

Source: Internet
Author: User

Key code:

        #regionReplace characters by index// <summary>        /// Replace characters by index        ///<para>eg:assert.areequal ("Zbcdefghij", Stringhelper.replaceat ("Abcdefghij", 0, ' Z '));</para>         // </summary>        /// <param name= "Data" > Strings to be manipulated </param>        // <param name= "index" > Target index </param>        /// <param name= "Replace" > Replace with characters </param>        // <returns> string after operation </returns>         Public Static stringReplaceat ( This stringDataintIndexCharReplace) {StringBuilder _builder =NewStringBuilder (data); _builder[index] = replace;return_builder.        ToString (); }#endregion        #regionReplace a string based on an index// <summary>        /// Replace string with index        ///<para>eg:assert.areequal ("Zxcdefghij", Stringhelper.replaceat ("Abcdefghij", 0, 2, "ZX")); </para >        // </summary>        /// <param name= "Data" > Strings to be manipulated </param>        // <param name= "index" > Target index </param>        // <param name= "Length" > Need to replace length </param>        /// <param name= "Replace" > Replace with string </param>        // <returns> string after operation </returns>         Public Static stringReplaceat ( This stringDataintIndexintLengthstringReplace) {StringBuilder _builder =NewStringBuilder (data); _builder.            Remove (index, length); _builder. Insert (index, replace);return_builder.        ToString (); }#endregion

Hope to be helpful!

[C #] replaces characters/strings based on index

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.