Btw try to avoid using "unlimited wildcars" like * and +. Use {1,n} instead of + and {0,n} instead of * where n is the number of max characters you expect to a positive match. The reason is unlimited search can lead very slow regex matches in case of big input data and where end results is not...