The following should be matched:
AAA123 ABCDEFGH123 XXXX123
can I do: \".*123\" ?
\".*123\"
Try the regex .{3,}. This will match all characters except a new line.
.{3,}