Hi all,
I know in vb.net you can use this function to check the beginning part of a string
How can you do something like this is .vbs? Any help would greatly be appreciated. Thanks!Code:If myString.StartsWith("SOMETHING") Then
Printable View
Hi all,
I know in vb.net you can use this function to check the beginning part of a string
How can you do something like this is .vbs? Any help would greatly be appreciated. Thanks!Code:If myString.StartsWith("SOMETHING") Then
If (Left(myString, 9) = "SOMETHING") Then
works great. Thank you!