java-tutorials/core-java-modules/core-java-regex/README.md

16 lines
1009 B
Markdown
Raw Normal View History

=========
## Core Java 8 Cookbooks and Examples
### Relevant Articles:
2020-07-21 09:20:08 -04:00
- [An Overview of Regular Expressions Performance in Java](https://www.baeldung.com/java-regex-performance)
- [A Guide To Java Regular Expressions API](http://www.baeldung.com/regular-expressions-java)
2020-02-10 16:10:44 -05:00
- [Guide to Escaping Characters in Java RegExps](http://www.baeldung.com/java-regexp-escape-char)
- [Pre-compile Regex Patterns Into Pattern Objects](https://www.baeldung.com/java-regex-pre-compile)
- [Difference Between Java Matcher find() and matches()](https://www.baeldung.com/java-matcher-find-vs-matches)
2020-10-28 04:57:05 -04:00
- [How to Use Regular Expressions to Replace Tokens in Strings in Java](https://www.baeldung.com/java-regex-token-replacement)
2020-04-10 03:57:27 -04:00
- [Regular Expressions \s and \s+ in Java](https://www.baeldung.com/java-regex-s-splus)
2020-05-12 05:06:47 -04:00
- [Validate Phone Numbers With Java Regex](https://www.baeldung.com/java-regex-validate-phone-numbers)
2020-07-21 09:20:08 -04:00
- [How to Count the Number of Matches for a Regex?](https://www.baeldung.com/java-count-regex-matches)