Java: Check a string follows a specified pattern
String Follows Pattern
Write a Java program to check if a string follows a given pattern.
Example pattern:
Given pattern = "xyyx", str = "red black black red", return true.
Given pattern = "xyyx", str = "red black black green", return false.
Given pattern = "xxxx", str = "red black black red", return false.
Given pattern = "xxxx", str = "red red red red", return true.
Visual Presentation:
Sample Solution:
Java Code:
Sample Output:
Is the string and pattern matched? false
Flowchart:
For more Practice: Solve these Related Problems:
- Write a Java program to check if a string matches a pattern that includes wildcard characters like '*' and '?'.
- Write a Java program to convert a simple pattern into a regular expression and validate a string against it.
- Write a Java program to verify if a string conforms to a pattern that includes repeated groups of characters.
- Write a Java program to perform a case-insensitive pattern matching check on a given string.
Java Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a Java program to get the position of a given prime number.
Next: Write a Java program to remove duplicate letters and arrange in lexicographical order from a given string which contains only lowercase letters.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics