If x is number: ^\d{2}\.\d{2}$
If x is word character ^\w{2}\.\w{2}$
Good tools for Regex:
RegExr (Online, i don't think it is C# Regex dialect but still very useful)Regex Tester (Visual Studio Extension)In my experience Regex is not hard, but the syntax is very unintuitive you really have to memorize it or have a good tool.
On the bright side there are only a couple of instructions/keywords that you need to know but there are not too many for the common usages.
I keep a small test project with Regexes so I dont have to remember them. In the above regexes the following is done: