正则表达式截取字符串的⽅法技巧有这么⼀段字符串:
[数字]字符串
结果
取  a=数字
b=字符串
截取⽅法1:
int a = Convert.ToInt32(txt1.Text.Trim().Replace('[', ']').Split(']')[1]);
string b = txt1.Text.Trim().Replace('[', ']').Split(']')[2];
截取⽅法2:
string str = "[数字]字符串";
前台字符串截取Regex reg = new Regex(@"
([^]+)\](.*)");
string a= Convert.ToInt32( reg.Match(str).Groups[1].Value);
string b= Convert.ToInt32( reg.Match(str).Groups[2].Value);
截取⽅法3
string tempStr = "[数字]字符串";
string pattern = @"
([\s§]∗)
([\s\S]*)";
Regex re = new Regex(pattern);
string str1 = Regex.Replace(tempStr,pattern,"$1");
string str2 = Regex.Replace(tempStr, pattern, "$2");
变成数组怎么写
/// <summary>
/// 返回⼀个字符串数组
/// </summary>
/// <param name="str"></param>
/// <returns></returns>
public string[] ReturnIDAndName(string str)
{
string[] stringArray = new string[2];
Regex reg = new Regex(@"
([^]+)\](.*)");
stringArray[0]= reg.Match(str).Groups[1].Value;
stringArray[1] = reg.Match(str).Groups[2].Value;
return stringArray;
}
/// <summary>
/// 截取字符串编号
/// </summary>
public int ReturnId(string str)
{
try
{
if (string.IsNullOrEmpty(str))
{
return 0;
}
Regex regex = new Regex("(?<=\\[)\\d+(?=\\])");
Match m = regex.Match(str);
int pid;
if (!m.Success)
{
pid = int.Parse("[" + regex.Match(str).Value + "]");
}
return int.Parse(regex.Match(str).Value);
}
catch
{
return 0;
}
}
以上就是本⽂给⼤家分享的正则表达式截取字符串的⽅法技巧,希望⼤家喜欢。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。