A Java class library with the ability to reverse any String.
- Download the
JosString.jar
file Here. - Import the JosString file to your Java project.
- To use it, your need to import it into your class like:
import static co.za.josiahthobejane.JosString.reverse;
e.g
import static co.za.josiahthobejane.JosString.reverse;
public class HelloWorld
{
public void static main(String[] args)
{
System.out.println("Reversed Hello World: " + reverse("HelloWorld") );
}
}
Author: Josiah Thobejane