java-tutorials/core-java-modules/core-java-string-algorithms-3/README.md

17 lines
1.2 KiB
Markdown
Raw Normal View History

## Java String Algorithms
This module contains articles about string-related algorithms.
### Relevant Articles:
2020-01-23 02:12:47 -05:00
- [Generating a Java String of N Repeated Characters](https://www.baeldung.com/java-string-of-repeated-characters)
2023-05-30 07:59:13 -04:00
- [Check if Two Strings Are Anagrams in Java](https://www.baeldung.com/java-strings-anagrams)
2021-09-29 11:38:32 -04:00
- [Email Validation in Java](https://www.baeldung.com/java-email-validation-regex)
2023-05-27 07:15:37 -04:00
- [Check if the First Letter of a String Is Uppercase](https://www.baeldung.com/java-check-first-letter-uppercase)
2022-11-29 18:19:54 -05: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 05:27:38 -05:00
- [Find the First Embedded Occurrence of an Integer in a Java String](https://www.baeldung.com/java-string-find-embedded-integer)
2023-04-28 09:02:28 -04:00
- [Find the Most Frequent Characters in a String](https://www.baeldung.com/java-string-find-most-frequent-characters)
2023-09-29 10:56:54 -04:00
- [Checking If a String Is a Repeated Substring](https://www.baeldung.com/java-repeated-substring)
- [Check if Letter Is Emoji With Java](https://www.baeldung.com/java-check-letter-emoji)
2023-10-28 18:31:46 -04:00
- [Wrapping a String After a Number of Characters Word-Wise](https://www.baeldung.com/java-wrap-string-number-characters-word-wise)