2019-11-02 18:58:17 +02:00
|
|
|
## Java Strings
|
|
|
|
|
2023-06-24 20:11:14 +02:00
|
|
|
This is a generic module contains articles about strings in Java.
|
|
|
|
Listed here there are only those articles that does not fit into other core-java-string-* modules as:
|
|
|
|
- [core-java-string-operations](../core-java-string-operations)
|
|
|
|
- [core-java-string-apis](../core-java-string-apis)
|
|
|
|
- [core-java-string-conversion](../core-java-string-conversions)
|
|
|
|
- [core-java-string-algorithms](../core-java-string-algorithms)
|
2019-11-02 18:58:17 +02:00
|
|
|
|
|
|
|
### Relevant Articles:
|
2022-09-23 15:18:11 +05:30
|
|
|
- [Use char[] Array Over a String for Manipulating Passwords in Java?](https://www.baeldung.com/java-storing-passwords)
|
2019-11-02 18:58:17 +02: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)
|
|
|
|
- [Java String Interview Questions and Answers](https://www.baeldung.com/java-string-interview-questions)
|
|
|
|
- [Java Multi-line String](https://www.baeldung.com/java-multiline-string)
|
2023-04-20 17:13:37 +08:00
|
|
|
- [Reuse StringBuilder for Efficiency](https://www.baeldung.com/java-reuse-stringbuilder-for-efficiency)
|
2023-11-01 21:14:14 +01:00
|
|
|
- [How to Iterate Over the String Characters in Java](https://www.baeldung.com/java-iterate-string-characters)
|
2023-11-05 12:49:07 +08:00
|
|
|
- [Passing Strings by Reference in Java](https://www.baeldung.com/java-method-pass-string-reference)
|
2023-12-17 08:21:43 +08:00
|
|
|
- [String vs StringBuffer Comparison in Java](https://www.baeldung.com/java-string-vs-stringbuffer)
|