Some common string processing in C #

Source: Internet
Author: User
String

1. String encoding Conversion

This method converts a gb2312 encoded string into a latin1 (ISO8859-1) encoded string
private string Convertstring (String srcstring)
{
Return System.Text.Encoding.GetEncoding ("Iso8859-1"). GetString (System.Text.Encoding.GetEncoding ("gb2312"). GetBytes (srcstring));
}
2. Dividing a string into an array of strings

String stringvalue = "1,2,3,4,5,6,7,8,9,10";
string[] Stringarry = Stringvalue.split (', ');
3. Inserts the specified character at the specified position of the string

String a = "abc.gif";
String B = A.inert (A.lastindexof ('. '), "_");
The result of B is: Abc_.gif
4, the interception file name extension

String fileName = "Abcdefg123456.jpg";
string result = Filename.substring (Filename.lastindexof (".") +1);
result is jpg



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.