Hi I've been working in a sintax translator using regular expresions in javascript. what this function should do is translate a code from perl to a javascript code. Currently the "use Module" commands will be translated into: use("Module");, so a javascript code with the functions and structure of the Module be loaded. function pl2js(original){ var nuevo=original; var r=2; while((r--)){ nuevo = nu
