
Like function and wildcards please help?
Quote:
>I have been trying to get a string comparison to work for days now.
>Does VBScrip allow wildcards (*)? I also haven't been able to find any
>information on LIKE?
If you're talking about string comparisons in
VBScript, take a look at the
RegExp object (regular expressions).
Quote:
>An example of what I am trying to do is:
>...WHERE MODEL LIKE '"FORD*"'....
If you're talking about ADO/Databases then I think that should be:
"WHERE MODEL LIKE '"FORD%"'
Jeff