猿问
求一个正则表达式,匹配文件名,比如index_1.html,index_2.html...
求一个正则表达式,匹配文件名,比如index_1.html,index_2.html...格式不变,1,2,3。。。表示页面分页递增。不胜感激,谢谢大侠们。
白衣染霜花
浏览 3697
回答 2
2回答
慕容森
Regex re = new Regex(@"index_\d+\.html");
0
0
0
POPMUISE
Regex reg =new Regex('^index_[1-9]+.html$');reg.math("index_1.html"); => ture;
0
0
0
随时随地看视频
慕课网APP
相关分类
正则表达式
正则判断数字末尾的为0情况
3 回答
我要回答