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 filter expression?
Is VB Script Case sensitive or Case insensitive?
Which operator can be used to check if two numbers are equal or not in vbscript?
Both Static and dynamic arrays are handled by VB script. Is it true?
I need help to write a function in vbscript to click on a link. That link looks like a tab. There are 6 tabs. When I click on 1 tab it should show as "on". when I spy the class property is on. But for the one which is not clicked the class property is blank. I have objects created in our custom object repository. Please give me some idea.
How to declare an array in vbscript?
how to add the shared repository file to the script file while running the script manuall
Is vbscript a case-sensitive or case-insensitive?
hi Set myobj=Description.Create() myobj("type").value="submit" myobj("name").value="google search" myobj("html tag").value="button" browser("title:=google").page("title:=google").webButton (myobj).Click i was running above code in one weak back it was working fine i got result,again i opened after few days ,again i was trying to run the code it shows run time error in last line of my code ,why ?pls answer my question?
What are the disadvantages of vbscript?
Write a program to create a Dynamic array of size 5 elements and display all the elements.
Which operator is used for fetching the modulus of the 2 numbers in the vbscript language?