Convert perl script to vba

I am using a computer on which a perl script is not allowed. Is there any tool to convert perl script to vba macro?

Or are there any links where we can get the vba equivalent for perl statements.

+4
source share
2 answers

Assuming you have access to a machine that Perl can run on, you can try using the PAR Packer (pp) utility .

% pp -o hello hello.pl # Pack 'hello.pl' into executable 'hello' # (or 'hello.exe' on Win32) 
+3
source

If you have enough permissions to run VB scripts, you should also have permissions to install the Perl interpreter and just run the script from the beginning.

-1
source

Source: https://habr.com/ru/post/1383828/


All Articles