I have been given a task to convert code that is written in JavaScript over to VBScript. It is actually quite basic code and it is really just the syntax that needs to be converted.

For example

 if (str == "string text") {
   foo = "foo";
} else {
   foo2 = "foo2";
}

becomes

 If (str = "string text") Then
   foo = "foo"
Else
   foo2 = "foo2"
End If

I was wondering if a tool existed to convert from JavaScript to VBScript?

link|improve this question

60% accept rate
can i be the first one to say: why on god's good earth would you want to convert TO vbscript??? – nickf Oct 21 '08 at 7:18
heh, i know it's a strange situation, but basically due to legacy support – Mrgreen Oct 21 '08 at 13:01
can i be the second one to say: why on god's good earth would you want to convert TO vbscript??? ;-) – Dscoduc Feb 7 '09 at 16:03
feedback

1 Answer

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.