Do the "control characters" used in regular expressions use many different implementations of regular expression parsers (for example, regex in Ruby, Java, C #, sed, etc.).
For example, in Ruby \D means not a digit ; Does this mean the same in Java, C # and sed? I assume that I am asking if there is a βstandardβ for regular expressions that all regular expression parsers support?
If not, is there any general subset that should be studied and mastered (and then studied specific to parsers, how do they occur)?
java c # ruby regex
Zabba
source share