The following should be matched:
AAA123 ABCDEFGH123 XXXX123
can I do: \".*123\" ?
\".*123\"
Yes, you can. That should work.
.
\.
.?
.{0,1}
.*
.{0,}
.+
.{1,}