Regex regRoot1 = new Regex(@"^c:\\\\\w*(.jpg|.gif|.png|.bmp)$");
2.匹配fromfolder路径下子文件夹为固定命名的图片文件
Regex regPath1 = new Regex(@"^" + fromfolder.Replace(@"\",@"\\") + @"\\(a.*|b.*|c.*|d.*)\\\w*(.jpg|.gif|.png|.bmp)$");
元字符 |
说明 |
. |
匹配除换行符以外的任意字符 |
\b |
匹配单词的开始或结束 |
\d |
匹配数字 |
\s |
匹配任意的空白符 |
\w |
匹配字母或数字或下划线或汉字 |
^ |
匹配字符串的开始 |
$ |
匹配字符串的结束 |
具体参照:
http://www.cnblogs.com/youring2/archive/2009/11/07/1597786.html
原文链接:https://www.f2er.com/regex/359348.html