[zhengjian211]疯狂青蛙 10:54:28
弄好了
[c#]petcon 10:55:22
[zhengjian211]疯狂青蛙 10:55:53
RegexOptions.IgnoreCase
);
strs = Regex.Replace(
strs,
@"S(.*?)[/#^](.*?)(;|$)",
"($1/$2)",
RegexOptions.IgnoreCase
);
strs = Regex.Replace(
strs,
@"([{}])",
"$1"
);
}
return string.Join("", strs);
}///
/// 移除多行文字的格式控制符,但保留换行符
///
/// 多行文字的带格式控制符的字符串
/// 移除格式控制符,但保留换行符后的字符串
public static string GetMTextContentsWithP(this string str)
{
string[] strs = str.Split(new string[] { "" }, StringSplitOptions.None);
for (int i = 0; i < strs.Length; i++)
{
strs = Regex.Replace(
strs,
@"(?
[c#]petcon 10:56:41
赞
我用c++写的时候 没用 正则
暴力替换了下
[zhengjian211]疯狂青蛙 10:57:27
咋替换啊
[c#]petcon 11:07:13
把 那几个斜杠都替换掉了 |