Forum Discussion
TheEndless
11 years agoRoku Guru
Type() returns a string. Directly comparing two strings is always case-sensitive. If you want it to be case-insensitive, you'll need to make sure the case is the same on both sides using UCase or LCase.
For example:
For example:
If LCase(Type(id)) = "string" Or UCase(Type(id)) = "ROSTRING" Then
...