Hi timberline-ga,
This should match your URLs:
lists\..*market
Note the backslash before the second dot. This makes the dot match a
dot character, instead of the dot being a metacharacter that matches
any character.
The asterisk means "zero or more times", so this regular expression
means "Match 'lists.' followed by zero or more characters followed by
'market'"
If this doesn't work for you, let me know what language you're using.
Some languages have slight differences in the regular expressions that
they accept, although the regex above is pretty universal.
Regards,
eiffel-ga
Additional Link:
Regular Expressions tutorial, examples and reference
http://www.regular-expressions.info/ |
Clarification of Answer by
eiffel-ga
on
29 Jun 2006 08:26 PDT
Hi timberline-ga,
Thanks for your kind comments.
Google Answers Researchers are not permitted to bypass the Google
Answers service to make direct contact with customers. You may, if you
wish, include the text "for eiffel-ga" in the subject line of your
future questions and I will answer them if possible.
However, I am not always available to work on Google Answers
questions, and there are other GA researchers available who also have
experience working with regular expressions who would be able to help
you with your questions if you so desire.
Regards,
eiffel-ga
|