VBScript: REPLACE Function.. ASP code
Full Syntax:
Replace(string,strFind,strReplace[,start][,count][,compare])Syntax:
Replace(string, strFind, strReplace)
<%
DIM testString, strFind, strReplacestrFind = "good"
strReplace= "great"
testString = "Now is the time for all good men to come to the
aid of their country!"
Replace(testString, strFind, strReplace)
%> |
|