58a536c395
* Implementing Hexagonal Architecture in java * Removing duplicates from a string * Fix for the code review feedback - removing the hexagonal architecture code - removing the methods removeDuplicatesUsingCharArray - adding some meaningful sentences to test * Fix for the code review feedback - fix for removeDuplicatesUsingCharArray - adding unit testing - adding brackets around for loops * Fix for the code review feedback * Adding remove duplicates using java 8 distinct adding assets to the unittests to test for empty strings * Checking for empty strings in unit tests Adding an if statement to check whether an empty string is passed to removeDuplicatesUsingSorting method |
||
---|---|---|
.. | ||
src | ||
README.md | ||
pom.xml |
README.md
=========
Java Strings Cookbooks and Examples
Relevant Articles:
- String Operations with Java Streams
- Converting String to Stream of chars
- Java 8 StringJoiner
- Image to Base64 String Conversion
- Java – Generate Random String
- Convert char to String in Java
- Convert String to int or Integer in Java
- How to Convert String to different data types in Java
- Converting Strings to Enums in Java
- Quick Guide to the Java StringTokenizer
- Count Occurrences of a Char in a String
- Split a String in Java
- How to Remove the Last Character of a String?
- CharSequence vs. String in Java
- StringBuilder and StringBuffer in Java
- Guide to Java String Pool
- Check if a String is a Palindrome
- Comparing Strings in Java
- Check If a String Is Numeric in Java
- Why Use char[] Array Over a String for Storing Passwords in Java?
- Convert a String to Title Case
- Compact Strings in Java 9
- Java Check a String for Lowercase/Uppercase Letter, Special Character and Digit
- Convert java.util.Date to String
- String Not Empty Test Assertions in Java
- Get Substring from String in Java
- Converting a Stack Trace to a String in Java
- Sorting a String Alphabetically in Java
- Remove Emojis from a Java String
- String Not Empty Test Assertions in Java
- String Performance Hints
- Using indexOf to Find All Occurrences of a Word in a String
- Java Base64 Encoding and Decoding
- Generate a Secure Random Password in Java