Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/exoad/string.java
better string for java, iterable!
https://github.com/exoad/string.java
Last synced: about 7 hours ago
JSON representation
better string for java, iterable!
- Host: GitHub
- URL: https://github.com/exoad/string.java
- Owner: exoad
- License: other
- Created: 2022-05-12T00:16:06.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-07T13:43:35.000Z (about 2 years ago)
- Last Synced: 2023-03-10T05:46:40.757Z (over 1 year ago)
- Language: Java
- Homepage:
- Size: 27.3 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# better_string
better string for java, iterable!This java extension contains some pre-implemented methods, such as ciphers, and also replace().
You must provide extra abstraction for any algorithms provided by this.Further methods will be added and updates will be added later.
## Example Usage:
```java
public static void main(String... args) {
string str = new string("hello");
str.forEach((v) -> {
System.out.println(v);
});
char x = str.strc[0]; // h
}
```## Class Extension
It is no need for one to remove the "final" keyword from the class declaration. This is supposed to be
a similar class to the original String class, and shall not be extended.