Is there a relatively quick program out there to accomplish at least the basics of this? Just a few regexes? I'm willing to do some manual conversion, but this is a pretty big set of scripts.

link|improve this question
ur question sounds very vague..please add more – Perpetualcoder Feb 27 '10 at 7:46
What exactly do you want to convert? – aviraldg Feb 27 '10 at 7:49
2  
I'm not sure whether such a conversion tool exists. To be sure, this will involve a lot more than "a few regexes"; the thing is that neither javscript nor python programs are regular languages... – mjv Feb 27 '10 at 7:51
9  
I've seen people on SO wanting to use regexes for lots of things they shouldn't be used for... converting python to js takes the cake though. – Tom Feb 27 '10 at 8:14
1  
this question isn't that vague – Oxinabox Feb 27 '10 at 8:21
show 1 more comment
feedback

2 Answers

up vote 2 down vote accepted

Hm this is a hardone. the definition of a compiler is translates from a higher level langauge to a lower leval language. eg python to machinecode. or java to javascript (google has a rather famous compiler for this somewhere - tis' what makes google doc easier to make) Python to javascript compileres abound. technically javascript to python would be a decompiler. (afaik)

I found some speculation about a javascript-python converter here: follow the tread through. it mostly speaks of how it wouldn't be too hard to do. i can't find anything , but that doesn't mnean it's no out there. a

Regex is not suitable, regex is suitable only for regular languages. programming languages are not normally regular languages. see this

link|improve this answer
Thanks, I guess I will have to do it manually to do it right. – user282583 Feb 27 '10 at 8:29
feedback

If what you are asking is converting a few regexs in javascript to Python equivalent, the basics of regular expressions are mostly pretty standard. check out the Python re module doc. See if what you are using is documented. Also of interest to you is this page.

If you are talking about converting javascript code to Python equivalent, the best converter is you. Learn about Python, and then convert them manually. there is nothing else better than the human being. Programming constructs like loops, variables, arrays are pretty common and standard you will recognize instantly how to use them straight away.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown