The user inputs any string and the program distinguishes whether the string is qualifying product ID or not.
The qualifying product IDs are any of string consists of two capitals and four numbers. (For example, "TV1523")
How can I make this program?
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
You should compare the string using a regular expression, for example:
The regular expression works as follows:
Using this method, you can loop through any number of strings and check if they match the criteria given. You should read up on regular expressions though, there are more efficient ways of storing the pattern if you are worried about performance. |
|||||
|
|
You should have a closer look at regular expressions. A tutorial is e.g. here at regular-expressions.info. An example for your Pattern could be
you can see it here on Regexr.com a good place to test regular expressions online. Here is java regex tutorial there you can see how you call them in Java. |
|||||
|
something like that, except you might wand to enclose the readLine() within a try catch instead :x |
|||||
|