Question

I have the following C++ code:

Char ^= 0xB3;

Char is a single character in a string. Is there an equivalent in VBScript?

Was it helpful?

Solution

Char = chr(asc(Char) xor &HB3)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top