C# 一段字符串,我想提取中间变量字符串怎么提取?

例如“axxx字符串xxxa”,我想提取"axxx"和"xxxa"之间的字符串怎么提取,其中的字符串是变量。
最新回答
只剩一地苍凉

2024-11-06 00:12:54

string content= this.FCKeditor1.Value; string content1 = content;
string imgpath = "";
List<String> imgs = new List<string>();
while (true)
{
int o = content1.IndexOf("axxx/");//这个是你那个axxx
if (o == -1)
break;
int j = content1.IndexOf("xxxa");这个是 xxxa
if (j == -1)
break; imgpath = imgpath + content1.Substring(o, j - o - 1 -1);
content1 = content1.Substring(j - 1);
}
能看懂吗??这个是循环截取的 在最上面的加上using System.Collections.Generic; 如果不想循环的话 就直接把那个while 去掉 ok
傲骨

2024-11-06 15:16:18

“axxx字符串xxxa”:axxx与xxxa中的xxx是不是一样或者是固定值,还是随机没有规律的?如果是有规律的字符串,可以直接定位,然后取出.