Java: Find a string that has a p followed by anything, ending in q
5. Match 'p...q' Pattern
Write a Java program that matches a string with a 'p' followed by anything ending in 'q'.
Sample Solution:
Java Code:
Sample Output:
Not matched! Found a match! Found a match! Not matched! Not matched!
Pictorial Presentation:
Flowchart :
For more Practice: Solve these Related Problems:
- Write a Java program to match strings that start with 'p' and end with 'q', allowing any characters in between.
- Write a Java program to implement a regex pattern that validates a string beginning with 'p' and concluding with 'q'.
- Write a Java program to test if a string conforms to the pattern of 'p' followed by any sequence of characters and ending in 'q'.
- Write a Java program to create a method that returns a boolean indicating whether a string starts with 'p' and ends with 'q' regardless of its middle content.
Go to:
PREV : Match Uppercase Followed by Lowercase.
NEXT : Check if Word Contains 'g'.
Java Code Editor:
Contribute your code and comments through Disqus.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.