62,266
社区成员
发帖
与我相关
我的任务
分享
string strMtitle = 正则表达式
MatchCollection LrcMatches = Regex.Matches(strLrcUrl, strMtitle, RegexOptions.IgnoreCase | RegexOptions.Compiled);
ArrayList arr = new ArrayList();
foreach (Match mm in LrcMatches)
{
strLrcUrlText = mm.Groups["url"].Value.ToString().Trim();
arr.Add(strLrcUrlText);
}
System.out.println("学习");