正则表达式pattern内部\\\\用法

前端之家收集整理的这篇文章主要介绍了正则表达式pattern内部\\\\用法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Pattern pattern = Pattern.compile("(http://|https://){1}-[\\w\\.\\\\\\-/:]+");

Matcher matcher = pattern.matcher("dsdsds<http://-dsds//gfgffd\\-:fd>fdf");


以上pattern 里面 :

\\w → \w 匹配字符

\\. → \. 匹配.

\\\\ → \\ 匹配反斜杠 尤其注意

\\-→ \- 匹配 - , 此处由于-位于[ ] 内,所以需要转义; 而注意在pattern中[ ]外边的- 则不需要转义


输出为:

http://-dsds//gfgffd\-:fd

原文链接:/regex/357978.html

猜你在找的正则表达式相关文章