Category Archives: Java String Programs

Java Vowel Count in String Program

Task: Write a Java program to count vowels in a given string input by the user at runtime. The Source Code of Java Vowel Count Program /* * Write down a Java program to input a string. * And count number of Vowels in it. */ package countvowelsinstring; import java.util.Scanner; /** * * @author www.EasyCodeBook.com… Read More: Java Vowel Count in String Program »

Loading

Java Palindrome String Check

Task: Write down a Java String Program to check for Palindrome. The Source Code of Java Program Check for Palindrome import java.util.Scanner; /** * * @author www.EasyCodeBook.com */ public class StringPalindrome { public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.print(“Enter a String to check for Palindrome: “); String s1=input.nextLine(); String s2=””;… Read More: Java Palindrome String Check »

Loading

Java String Class Reverse Program

Task: Write a Java String Class Reverse Program. You have to use only String class objects and String class built-in methods to reverse a user supplied string. Logic behind Java String Reverse Program You will use the following standard methods provided in String class: length() method to know the length of the original string. charAt(index)… Read More: Java String Class Reverse Program »

Loading