C #. NET technology insider 03-string

Source: Internet
Author: User
    1. String and stringbuilder
    • The string is immutable. In fact, after the two strings are connected, a new string is generated. Therefore, when a large number of strings are used, the performance is reduced.
    • Stringbuilder can efficiently use strings. The namespace is system. Text. When a string is accumulated, new objects are not generated every time. Therefore, many construction operations do not affect the performance of a string.
  • Escape characters
      • When a string contains tabs and backslash characters, you must use an escape sequence or add @ to the string signature @.
  • Common stringbuilder Methods:
      • append : append string. Multiple overload methods are available.
      • appendformat : append formatted strings.
      • insert (insert index location, inserted value ).
      • replace : You can create a string template first, and then replace it with a specific one. For example, you can do this when writing SQL statements.
      • remove (start index position, length of the characters to be removed ).

    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.