C# 记事本【查找下一个】如何实现?
发布网友
发布时间:2022-05-01 18:07
我来回答
共2个回答
热心网友
时间:2022-06-20 21:02
string indexPageString = "helloworld hellocode";//原始字符串
string searchString="hello";//待查询的字符串
int firstPosition = indexPageString.IndexOf(searchString);//第一个的位置
int nextPOstion = indexPageString.IndexOf(searchString, firstPosition + searchString.Length); //下一个的位置
热心网友
时间:2022-06-20 21:03
试试 正则表达式 吧!
应该能完成!