Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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!

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.