Is VBscript case-sensitive?
Answers were Sorted based on User's Feedback
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 |
Explain the extension .hta?
What are the special sub-types in vbscript?
How do you create a recordset object in VBScript?
How do i automate a website www.flyashx.com without having any test cases witin a week time.
which is the bset training centre to learn automation tools?
Suppose by navigation I went from 1 st page to 5 page ,so Write a generic script for coming from any page to the 1st page and by executing where the page may be it will come to 1st page
How to throw an error in vbscript?
What are the 2 ways to pass a value to the function?
If else for do while select in vb script?
How to check the particular window is exist or not with out using check points
Which keyword is used to declare a variable in the vbscript language?
How will you get the last occurrence of one string within another string using vbscript?