早教吧作业答案频道 -->其他-->
C#中Regex的一个小问题想要将目标代码中第一次出现以下标签中间内的值matches给我自定义的变量.0114025031——————————————我使用以下代码,请问newRegex的括号里,怎么写?RegexmyR
题目详情
C#中Regex的一个小问题
想要将目标代码中第一次出现以下标签中间内的值matches给我自定义的变量.
0114
025
031
——————————————
我使用以下代码,请问new Regex的括号里,怎么写?
Regex myRegex = new Regex();
MatchCollection matches = myRegex.Matches(inputString);
redMiss1.Text = matches[0].Groups[1].Value.ToString();
redMiss2.Text = matches[1].Groups[1].Value.ToString();
redMiss3.Text = matches[2].Groups[1].Value.ToString();
想要将目标代码中第一次出现以下标签中间内的值matches给我自定义的变量.
0114
025
031
——————————————
我使用以下代码,请问new Regex的括号里,怎么写?
Regex myRegex = new Regex();
MatchCollection matches = myRegex.Matches(inputString);
redMiss1.Text = matches[0].Groups[1].Value.ToString();
redMiss2.Text = matches[1].Groups[1].Value.ToString();
redMiss3.Text = matches[2].Groups[1].Value.ToString();
▼优质解答
答案和解析
这个应该是标准答案,与上面的的正则表达式,有一个区别就是加了?非贪婪模式搜索
private void GetRegexValue()
{
//定义多个ul
string xml = @"
0114
025
031
0115
026
032
";
//第一个正则表达式,获取ul,与上一个区别在于加了?非贪婪模式搜索
string pattern = "[\\s\\S]+?";
MatchCollection mc = Regex.Matches(xml, pattern, RegexOptions.IgnoreCase);
if (mc.Count > 0)
{
string matchStr = mc[0].Value;
//第二个表达式,获取所有em值
MatchCollection matches = Regex.Matches(matchStr, "(?\\d+)");
string outStr = "";
if (matches.Count > 0)
{
//组织返回值,可以按照你的代码进行修改
foreach (Match match in matches)
{
outStr += match.Groups["v"].Value + ";";
}
//可用下面的代码替换
//redMiss1.Text = matches[0].Groups[1].Value.ToString();
//redMiss2.Text = matches[1].Groups[1].Value.ToString();
//redMiss3.Text = matches[2].Groups[1].Value.ToString();
}
}
}
private void GetRegexValue()
{
//定义多个ul
string xml = @"
0114
025
031
0115
026
032
";
//第一个正则表达式,获取ul,与上一个区别在于加了?非贪婪模式搜索
string pattern = "[\\s\\S]+?";
MatchCollection mc = Regex.Matches(xml, pattern, RegexOptions.IgnoreCase);
if (mc.Count > 0)
{
string matchStr = mc[0].Value;
//第二个表达式,获取所有em值
MatchCollection matches = Regex.Matches(matchStr, "(?\\d+)");
string outStr = "";
if (matches.Count > 0)
{
//组织返回值,可以按照你的代码进行修改
foreach (Match match in matches)
{
outStr += match.Groups["v"].Value + ";";
}
//可用下面的代码替换
//redMiss1.Text = matches[0].Groups[1].Value.ToString();
//redMiss2.Text = matches[1].Groups[1].Value.ToString();
//redMiss3.Text = matches[2].Groups[1].Value.ToString();
}
}
}
看了 C#中Regex的一个小问题...的网友还看了以下:
已知1/3≤a≤1,若函数f(x)=ax^2-2x+1,在区间[1,3]上的最大值为M(a),最小 2020-04-05 …
已知1/3≤a≤1,若函数f(x)=ax²-2x+1在区间[1,3]上的最大值为M(a),最小值为 2020-04-06 …
已知1/3≤a≤1,若函数f(x)=ax^2-2x在区间[1,3]上的最大值为M(a),最小值为N 2020-04-06 …
已知3\1≤a≤1若函数f(x)=ax^2-2x+1在区间[1,3]上的最大值为M(a)最小值为N 2020-04-06 …
已知1/3≤a≤1,若函数f(x)=ax^2-2x在区间[1,3]上的最大值为M(a),最小值为N 2020-05-15 …
已知1/3≤a≤1若函数f(x)=ax²-2x+1在区间[1,3]上的最大值为Ma最小值为Na令g 2020-05-16 …
有答案就是有个地方不懂 设二次函数f(x)=ax^2+bx+c在区 间[-2,2]上的最大值、最小 2020-06-27 …
设二次函数f(x)=ax^2+bx+c在区间[-2,2]上的最大值、最小值分别是M,m,集合A={ 2020-07-30 …
已知1/3小于等于a小于等于1,若f(x)=ax^2-2x+1在区间[1,3]上的最大值为M(a) 2020-08-01 …
用VSM测样品饱和磁化强度时,给出的是emu/g的单位,怎么换算成国际单位制A/m或T或Gauss呢 2020-11-05 …