Forum Moderators: open
I always use the replace command in ASP like below:
SomeVariable = Replace(SomeOtherVariable, " ", "_")
But I have just realised that I don't know the find command. Does anyone know it. If not, I could do the following.
ReplacedString = Replace(OriginalString, StingToFind, "1234567890")
If ReplacedString = OriginalSting Then
'Its not in there
Else
'Its in there
End If
Any ideas?
Chris