Conversion between char[] and string in C #

Source: Internet
Author: User

String converted into char[]

string ss = "ABCDEFG";

char[] cc = ss. ToCharArray ();

Char[] Convert to String

string s = new string (cc);

In addition, byte[] is replaced with a string

byte[] bb = Encoding.UTF8.GetBytes (ss);

string s = Encoding.UTF8.GetString (BB);

Here we use StringBuilder to convert between the array and string, very simply, the code is as follows

Using System.Text;

StringBuilder sb = new StringBuilder ();

foreach (char c in cc)

{

Sb. Append (c);

}

string s = sb. ToString ();

StringBuilder's Append method supports a variety of parameters, so the array can be converted to a string that is basically used.

The other string[] is converted to string. NET Framework provides a way to use the

String stror = "or";

string result = String. Concat (New string[]{"A", Stror, "B", Environment.NewLine, "C", Stror, "D"});

String to Int,double:int32.parse (str)

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.