2018-08-18 11:24:24 -04:00
=========
## Java Strings Cookbooks and Examples
### Relevant Articles:
- [String Operations with Java Streams ](http://www.baeldung.com/java-stream-operations-on-strings )
- [Converting String to Stream of chars ](http://www.baeldung.com/java-string-to-stream )
- [Java 8 StringJoiner ](http://www.baeldung.com/java-string-joiner )
- [Image to Base64 String Conversion ](http://www.baeldung.com/java-base64-image-string )
- [Java – Generate Random String ](http://www.baeldung.com/java-random-string )
- [Convert char to String in Java ](http://www.baeldung.com/java-convert-char-to-string )
- [Convert String to int or Integer in Java ](http://www.baeldung.com/java-convert-string-to-int-or-integer )
- [How to Convert String to different data types in Java ](http://www.baeldung.com/java-string-conversions )
- [Converting Strings to Enums in Java ](http://www.baeldung.com/java-string-to-enum )
- [Quick Guide to the Java StringTokenizer ](http://www.baeldung.com/java-stringtokenizer )
- [Count Occurrences of a Char in a String ](http://www.baeldung.com/java-count-chars )
- [Split a String in Java ](http://www.baeldung.com/java-split-string )
- [How to Remove the Last Character of a String? ](http://www.baeldung.com/java-remove-last-character-of-string )
- [CharSequence vs. String in Java ](http://www.baeldung.com/java-char-sequence-string )
- [StringBuilder and StringBuffer in Java ](http://www.baeldung.com/java-string-builder-string-buffer )
- [Guide to Java String Pool ](http://www.baeldung.com/java-string-pool )
- [Check if a String is a Palindrome ](http://www.baeldung.com/java-palindrome )
- [Comparing Strings in Java ](http://www.baeldung.com/java-compare-strings )
- [Check If a String Is Numeric in Java ](http://www.baeldung.com/java-check-string-number )
- [Why Use char[] Array Over a String for Storing Passwords in Java?](http://www.baeldung.com/java-storing-passwords)
- [Convert a String to Title Case ](http://www.baeldung.com/java-string-title-case )
2018-09-07 06:56:13 -04:00
- [Compact Strings in Java 9 ](http://www.baeldung.com/java-9-compact-string )
- [Java Check a String for Lowercase/Uppercase Letter, Special Character and Digit ](https://www.baeldung.com/java-lowercase-uppercase-special-character-digit-regex )
2018-09-09 23:55:31 -04:00
- [Convert java.util.Date to String ](https://www.baeldung.com/java-util-date-to-string )
2018-09-23 09:26:48 -04:00
- [String Not Empty Test Assertions in Java ](https://www.baeldung.com/java-assert-string-not-empty )
2018-09-15 16:08:35 -04:00
- [Get Substring from String in Java ](https://www.baeldung.com/java-substring )
2018-09-27 03:09:58 -04:00
- [Converting a Stack Trace to a String in Java ](https://www.baeldung.com/java-stacktrace-to-string )
- [Sorting a String Alphabetically in Java ](https://www.baeldung.com/java-sort-string-alphabetically )
- [Remove Emojis from a Java String ](https://www.baeldung.com/java-string-remove-emojis )
2018-10-12 16:22:56 -04:00
- [String Not Empty Test Assertions in Java ](https://www.baeldung.com/java-assert-string-not-empty )
- [String Performance Hints ](https://www.baeldung.com/java-string-performance )
2018-11-01 08:12:53 -04:00
- [Using indexOf to Find All Occurrences of a Word in a String ](https://www.baeldung.com/java-indexOf-find-string-occurrences )
2018-11-08 15:23:23 -05:00
- [Java Base64 Encoding and Decoding ](https://www.baeldung.com/java-base64-encode-and-decode )
2018-11-18 23:55:50 -05:00
- [Generate a Secure Random Password in Java ](https://www.baeldung.com/java-generate-secure-password )
2018-11-25 19:05:39 -05:00
- [Removing Repeated Characters from a String ](https://www.baeldung.com/java-remove-repeated-char )