Simple explanation of Regex?

Is there a simple explanation of how to create Regex find and replace patterns?
I need to convert Czech dates like 31. října 1967 to 31 October 1967 and that kind of thing. I know it should be easy, and I have just about figure out how to actually find expressions, but not how to replace them. I would love to find some kind of resource that would teach Regex to a complete newbie with zero knowlege of programming rather than having to ask people to come up with solutions for me.

Parents Reply
  • Don't know what source did you get the regex from, but it's just completely wrong.
    For example, "two digits" would be "\d\d" or "\d{2}" or "[0-9][0-9]" or "[0-9]{2}"

    Apart from that, I'd say that what you want to accomplish is not possible (unless there is some kind of Studio plugin I don't know of) since regexes do not support any "translation tables" (or "dictionaries", or how to call it...) that you want to use for changing the Czech month names to English month names.

    I'm curious, where did you get the #czech_months# thing from? What do you expect it to do?

Children