C \ # 문자열, 배열, List 의 캡 처 와 변환
2137 단어 --- [C \ # 와 디자인 모델]
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading;
namespace Test1
{
class Class1
{
///
/// 、 List
///
///
static void Main(string[] args)
{
string str = "abcdefghij1234567890";
int i = 4;
string str1 = str.Substring(0, i);// i --abcd
string str2 = str.Remove(i, str.Length - i);// i = i --abcd
string str3 = str.Remove(0, i);// i --efghij1234567890
string str4 = str.Substring(i);// i --efghij1234567890
string str5 = str.Substring(str.Length - i);// i --7890
string str6 = str.Remove(0, str.Length - i);// i --7890
string str7 = str.Substring(0, str.Length - i);// i --abcdefghij123456
string str8 = str.Remove(str.Length - i, i);// i --abcdefghij123456
string str9 = str.Replace("abc", "ABC");// --ABCdefghij1234567890
string str0 = str.ToUpper();// --ABCDEFGHIJ1234567890
string str10 = str0.ToLower();// --abcdefghij1234567890
string str11= str.Substring(str.Length - 1, 1);// --0
int m = str.IndexOf("cde") + 1;
int n = str.IndexOf("23");
string str12 = str.Substring(m, n - m + 2);// --cdefghij123
string s = "a,b,c,d,e,f,g,h,i,j";
string[] strArray = s.Split(','); //
string str13 = string.Join(",", strArray);//
List list = new List(s.Split(','));// List
string str14 = string.Join(",", list.ToArray());//List
string[] str15 = list.ToArray();//List
List listS = new List(str15);// List
Console.WriteLine(str0);
Console.WriteLine(str12);
Console.ReadLine();
}
}
소결: 지식 을 제때에 정리 하지 않 으 면 쉽게 잊 혀 지고 함께 격려 합 니 다!