I do Regular Expressions so rarely that they always challenge me. Even simple ones.
How can I make a regular expression that will match all of these:
:= 'abc'
:= 'xyz'
:= '2rs'
:= 'abe'
:= 'a2c'
Basically it starts with := '
and ends with '
and has three values inside. Could be numbers or chars.