Originally Posted By: Georges_K
....
By the way, would you happen to know the location of the thread regarding the "side question?"


I do not know the thread but I think you are looking for something tlike this.

 Code:
;What to search for.
;Converted into an array by splitting it on ~.
$StringsToSearch = Split("abc~def~ghi", "~")

;Loop through the array item by item.
For Each $item in $StringsToSearch
	;Check if the items can be found.
	If InStr($string, $item)
		;Found it.
		? "Found it!"
	EndIf
Next
_________________________
Mart

- Chuck Norris once sold ebay to ebay on ebay.