https://github.com/rameshmf/java-strings-api-guide
Guide to String Handling in Java
https://github.com/rameshmf/java-strings-api-guide
java-string string string-regex stringbuilder
Last synced: 8 months ago
JSON representation
Guide to String Handling in Java
- Host: GitHub
- URL: https://github.com/rameshmf/java-strings-api-guide
- Owner: RameshMF
- Created: 2018-07-31T05:20:11.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-22T07:55:51.000Z (over 7 years ago)
- Last Synced: 2025-04-07T18:23:44.161Z (9 months ago)
- Topics: java-string, string, string-regex, stringbuilder
- Language: Java
- Size: 110 KB
- Stars: 5
- Watchers: 1
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This is a complete guide to Java String, StringBuilder, and StringBuffer methods/APIs. The source code examples of this guide are well tested with our local development environment and you can use these examples as bug-free. You can learn more on Complete Core Java Developer Guide.
In this guide, you will learn basic concepts, APIs/methods, coding, programs and all String operations with examples.
Java String API Guide
-
Java String Class API Guide
- The String Constructors
- String charAt(int index)
- String codePointAt(int index)
- String codePointBefore(int index)
- String compareTo(String anotherString)
- String compareToIgnoreCase(String str)
- String concat(String str)
- String contains(CharSequence s)
- String contentEquals()
- String endsWith(String suffix)
- String equals() and equalsIgnoreCase()
- String getBytes()
- String getChars()
- String hashCode()
- String indexOf()
- String intern()
- String lastIndexOf()
- String length()
- String regionMatches()
- String replace()
- String replaceAll(String regex, String replacement)
- String replaceFirst(String regex, String replacement)
- String split() methods
- String startsWith() methods
- String subSequence(int beginIndex, int endIndex)
- String substring() methods
- String toCharArray()
-
String toLowerCase() methods
- String toString()
-
String toUpperCase() methods
- String trim()
-
String valueOf()
- Guide to Java String Constant Pool
- Guide to String Best Practices in Java (Best Practice)
- String Special Operations with Examples
- String Comparison Methods with Examples
- String Methods for Character Extraction
- String Searching Methods with Examples
- String Modifying Methods with Examples
- Java StringBuffer Class API Guide
-
Java StringBuilder Class API Guide
