The following should be matched:
AAA123
ABCDEFGH123
XXXX123
can i do: ".*123"?
|
Yes, you can. That should work.
|
|||
|
|
|
There are lots of sophisticated regex testing and development tools, but if you just want a simple test harness in Java, here's one for you to play with:
Now you can easily add new testcases and try new patterns. Have fun exploring regex. See also |
|||
|
|
Use the pattern |
|||
|
|
|
No, * will match zero-or-more characters. You should use + that matches one-or-more instead. this expression might work better for you: //Huusom |
|||
|
|
|
Yes that will work, though note that
|
|||
|
|
.*123? – akf May 26 '10 at 12:30