如何使用 c# 正则表达式将以下文本读入单个字符串?
* EDIT * :70://this is a string //this is continuation of string even more text 13
这存储在 ac#List 对象中
所以例如上面需要返回
this is a string this is continuation of string even more tex
我认为这样的事情可以完成这项工作,但它不会返回任何组值
foreach (string in inputstring)
{
string[] words
words = str.Split(default(string[]), StringSplitOptions.RemoveEmptyEntries);
foreach (string word in words)
{
stringbuilder.Append(word + " ");
}
}
Match strMatch = Regex.Match(stringBuilder, @"[^\W\d]+");
if(strMatch.Success)
{
string key = strMatch.Groups[1].Value;
}
也许,我做错了,但我需要使用正则表达式从示例字符串中格式化单个字符串。