string reverse function in java code example
Example 1: reverse string java
String string="whatever";
String reverse = new StringBuilder(string).reverse().toString();
System.out.println(reverse);
Example 2: Reverse a string in java without using reverse function
import java.util.Scanner;
public class ReverseWithoutFunction
{
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
System.out.println("Please enter a string: ");
String strInput = sc.nextLine();
int len = strInput.length();
String strReverse = "";
System.out.println("Reverse a string without using reverse function: ");
for(int a = len - 1; a >= 0; a--)
{
strReverse = strReverse + strInput.charAt(a);
}
System.out.println(strReverse);
sc.close();
}
}
Example 3: how to reverse a string in java
public class ReverseString {
public static void main(String[] args) {
String s1 = "neelendra";
for(int i=s1.length()-1;i>=0;i--)
{
System.out.print(s1.charAt(i));
}
}
}
Example 4: java string reverse
String rev = new StringBuilder("Your String").reverse().toString();
Example 5: string reverse in java
String str = "Hello";
String reverse(String str){
StringBuilder sb = new StringBuilder();
sb.append(str);
sb.reverse();
return sb.toString();
}
Example 6: Java reverse string array
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
public class ReverseStringArrayUsingCollections
{
public static void main(String[] args)
{
List<String> li = new ArrayList<String>();
li.add("java");
li.add("core");
li.add("world");
li.add("hello");
System.out.println("Given list: " + li);
Collections.reverse(li);
System.out.println("After using collections: " + li);
}
}