Java Program to Replace First Occurrence Vowel with ‘-‘ in a String

In this tutorial, We will learn writing java program to Replace First vowel that occurs in the input string with ‘-‘. For any input string, we have to find vowels which occurs very first in…

Java Program to Print Maximum Occurred Character in String

In this tutorial, we will learn to print the character which occurs the most. For any input string, we have to check the number of occurrences of each character and print the character with the…

Java Program to Count Vowels and Consonants in the String

In this tutorial, we are going to learn java programming to count the number of vowels (‘a’, ‘e’, ‘i’, ‘o’, ‘u’) and consonants (any alphabet other than vowels) in a string. For any input string,…

Java Program to remove Vowels from the String

In this tutorial, we are going to learn java programming to remove all vowels present in the string. For any input string, we have to check whether the string contains vowels or not, if it…

Java Program to Convert Lowercase vowel into Uppercase in String

In this tutorial, we are going to learn a python program to convert vowels (‘a’, ‘e’, ‘i’, ‘o’, ‘u’) with their respective uppercase. For any input as a string from the user, we have to…

Java program to Convert Lowercase Character to Uppercase Character

In this tutorial, we are going to see a java program to convert lowercase characters (alphabet) into uppercase characters (alphabet). For any input string, any lowercase character used in input string will be replaced with…

Java Program to check given Character is digit or not

In this tutorial we are going to check if the character is Digit ( 0-9) and write the java program for the same. There are some logic behind characters which are mentioned below: A character…