13 lines
785 B
Markdown
Raw Normal View History

## Java String Algorithms
This module contains articles about string-related algorithms.
### Relevant Articles:
2020-01-23 15:12:47 +08:00
- [Generating a Java String of N Repeated Characters](https://www.baeldung.com/java-string-of-repeated-characters)
2020-01-23 15:12:47 +08:00
- [Check if Two Strings are Anagrams in Java](https://www.baeldung.com/java-strings-anagrams)
2021-09-29 23:38:32 +08:00
- [Email Validation in Java](https://www.baeldung.com/java-email-validation-regex)
2021-12-04 16:14:21 +08:00
- [Check if the First Letter of a String is Uppercase](https://www.baeldung.com/java-check-first-letter-uppercase)
2022-11-30 07:19:54 +08:00
- [Find the First Non Repeating Character in a String in Java](https://www.baeldung.com/java-find-the-first-non-repeating-character)
2023-02-17 18:27:38 +08:00
- [Find the First Embedded Occurrence of an Integer in a Java String](https://www.baeldung.com/java-string-find-embedded-integer)