正则表达式是十分强大精炼的,可以帮助我们快速判断字符串是否符合某种格式,或查找出字符串的对应字符
java提供了 Pattern 和 Matcher 类
Pattern.pattern() 取得 Pattern.compile( regex ) 中的参数 regex
1 | public class Program1{ |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 咲夜南梦's 博客!
评论
Pattern.pattern() 取得 Pattern.compile( regex ) 中的参数 regex
1 | public class Program1{ |