Play out with python or some other programming language that has regexes in them:
import re
regex = re.compile(r"ab*c")
assert regex.match("ac")
assert regex.match("abc")
assert regex.match("abbc")
result = regex.match("abbbc?")
assert result
print dir(result)
assert result.end() == 5 and result.start() == 0
assert result.group(0) == "abbbc"
You may wonder what r"..." -means. It's not a special syntax for regexes, but for 'raw'. It simply means the string is not losing its escape characters. It still escapes the quotes though. So r"\" is invalid. By using this thing you don't need to do double escaping or use a different escape character for regexes. It's an useful feature to be found from a language of your choice.
Regexes are extremely useful. If you can turn your problem efficiently into a string matching problem. If it's simple enough you won't even need regexes! To give you an example how you could check out whether either player has won in tic-tac-toe, you could try something like next:
# BOARD STATUS:
# OXX
# _XO
# OX_
current_board = "OXX_XOOX_"
def has_won(board, mark):
win = mark*3
if win in (board[0:3], board[3:6], board[6:9]): return True
if win in (board[0::3], board[1::3], board[2::3]): return True
if win in (board[2::2][:3], board[0::4]): return True
assert has_won(current_board, 'X')
assert not has_won(current_board, 'O')
I think... with the same algorithms the python uses for regexes, you could also do pattern generators. It's not supported by python really, but if it were, you could then do stuff like re.generate(r"(A|T|G)+") or re.generate(r"lo+l")
For a long time I did not used regexes much because I didn't know how to write an efficient regex parser of my own. If you are like me, it's good idea to look into NFAs and DFAs. It's quite interesting how to parse those regexes into state machines, but the implementation aspect itself is somewhat boring in the end.