Probably seen this kind of a question a million times. Regex is like black magic to me, I don't get it. I tried to make a regex I need for a C# application. It's a pattern like this:
== text ==
Where "text" can be any text without numbers. With my limited understanding I tried this:
'== %[a-z]% =='
But I am here so obviously it didn't work. Any help?