I have some regular expressions written for the Microsoft's .net regex format and I want to use them in a python program on a Linux machine. Is there a compatibly library or a method of covering them? If I have to do it by hand, do you know of a cheat sheet or a guide?
|
Most of the features in .NET regexes are available in Python; however there are a few things missing:
A comprehensive list of differences can be found here. And if you need to do regex conversions often, RegexBuddy can do it for you (as long as you're not using features the destination regex engine doesn't have, of course). |
|||||
|
|
The docs for the |
|||
|
|
|
In terms of implementation I think the CLR and Python regex engines are very close, more so than either of them to other languages like Perl or the PCRE. For example, I've used Expresso to create and test complicated regular expressions that I've later adapted to Python code. That said, I don't think I've ever seen an actual converter, but since they're so similar it should be relatively easy to convert them manually (again, more so than if we were talking about other implementations). This page has good comparisons between the different engines, although it focuses on capabilities rather than similarity of syntax. |
|||
|
|
|
Are you sure there's an incompatibility? At least for the basic to middle-level stuff in regexes, all the implementations pretty much agree on the syntax, except for maybe whether parens should be escaped or not. |
|||
|