Is VBscript case-sensitive?

Answers were Sorted based on User's Feedback



Is VBscript case-sensitive?..

Answer / sai

VBScript is "not" a case sensitive

Is This Answer Correct ?    26 Yes 3 No

Is VBscript case-sensitive?..

Answer / monika

VBScript is "not" a case sensitive until we are not doing binary comparison. if we are doing binary comparison than it is case sensitive.

e.g. TEXT and text will be different if binary comparison is done. but it will be same if textual comparison is done

StrComp("TEXT","text")

outpot: -1

StrComp("TEXT","text",1)

outpot: 0

Is This Answer Correct ?    6 Yes 1 No

Is VBscript case-sensitive?..

Answer / sujatha_k

Vb script is case sensitive

Is This Answer Correct ?    3 Yes 19 No

Post New Answer

More VB Script Interview Questions

What is the purpose of on error resume next statement?

0 Answers  


Explain the string concatenation function in vbscript?

0 Answers  


Why to use option explicit in vb script?

0 Answers  


who will create the object?

0 Answers   TCS,


Could Anybody Please tell me What is the script for Find 3rd Largest element in the Array without using a SORT function int Find(int arr[], int size); Thanks in Advance..

0 Answers   Amazon,






* ** *** Please write a code to get output like above diagram? ple explain as it how the code works?

2 Answers  


How can you create an object in vbscript?

0 Answers  


How can you fetch the value of a cookie?

0 Answers  


how to acces the remote mechine using vb cript(QTP)

0 Answers   TCS,


Is it possible to pass optional argument to function in vb script?

2 Answers  


What is string concatenation function in VBScript?

2 Answers  


Which function is used to perform string comparison?

0 Answers  


Categories