w3resource

Java: Find a string that has a p followed by anything, ending in q

Java Regular Expression: Exercise-5 with Solution

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:

Java Regular Expression: Find a string that has a p followed by anything, ending in q.
Java Regular Expression: Find a string that has a p followed by anything, ending in q.

Flowchart :

Flowchart: Find a string that has a p followed by anything, ending in q.

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.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/java-exercises/re/java-re-exercise-5.php