Java: Find a string that has a p followed by anything, ending in q
Write a Java program that matches a string with a 'p' followed by anything ending in 'q'.
Sample Solution:
Java Code:
import java.util.Scanner;
public class test {
public static void main(String[] args) {
System.out.println(validate("phkuyrt"));
System.out.println(validate("pq"));
System.out.println(validate("pccddbbjjjq"));
System.out.println(validate("Jar"));
System.out.println(validate("pjhut"));
}
public static String validate(String text) {
if (text.matches("p.*?q$"))
return "Found a match!";
else
return "Not matched!";
}
}
Sample Output:
Not matched! Found a match! Found a match! Not matched! Not matched!
Pictorial Presentation:
Flowchart :
Java Code Editor:
Contribute your code and comments through Disqus.
Previous: Find the sequences of one upper case letter followed by lower case letters.
Next: Check a word containing the character g in a given string.
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