Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<CFSet LX=0>
<CFSET X=1>
<CFSET OFFset=1>
<CFSET Limit=3>
<CFSET RemoveFrom=" this sentence repeats this sentence repeats">
<CFSET Limit = #ListLen(RemoveFrom," ")# >
<CFLOOP Condition = " X LTE Limit ">
<CFSET LX = #Listgetat(RemoveFrom,X," ")# >
<CFSET Offset= #Find(LX,RemoveFrom,1)#>
<CFLOOP Condition = " Offset Is not 0 ">
<CFSET Offset= #Find(LX,RemoveFrom,Offset+Len(LX)-1)#>
<CFIF Offset IS Not 0>
<CFSET RemoveFrom = #RemoveChars(RemoveFrom,Offset,Len(LX))#>
<CFIF X GT 1><CFSET X = #X# -1></CFIF>
</CFIF>
</CFLOOP>
<CFSET Limit = #ListLen(RemoveFrom," ")# >
<CFSET X = #X#+1>
</CFLOOP>
<CFOUTPUT> RemoveFrom# </CFOUTPUT>
[code]
Hope it helps. I'm going to have to file this one under silly scripts, I'm sure I'll need it some day. :)
Have Fun.