在C#中,可以使用以下幾種方法來提取字符串中的子字符串:
Substring
方法:string str = "Hello, World!";
string subStr = str.Substring(0, 5); // 提取從索引0開始,長度為5的子字符串
Console.WriteLine(subStr); // 輸出:Hello
IndexOf
和Substring
方法結合:string str = "Hello, World!";
int index = str.IndexOf("World"); // 查找子字符串"World"的索引
string subStr = str.Substring(index, "World".Length); // 提取從索引index開始,長度為"World".Length的子字符串
Console.WriteLine(subStr); // 輸出:World
using System.Text.RegularExpressions;
string str = "Hello, [World!]";
Match match = Regex.Match(str, @"\[(.*?)\]"); // 使用正則表達式匹配方括號內的內容
if (match.Success)
{
string subStr = match.Groups[1].Value; // 提取匹配到的子字符串
Console.WriteLine(subStr); // 輸出:World
}
根據你的需求,可以選擇合適的方法來提取字符串中的子字符串。