Whatever message this page gives is out now! Go check it out!
RemoveChars(string, start, count)Parameter | Description |
string | A string or a variable that contains one. String in which to search. |
start | A positive integer or a variable that contains one. Position at which to start search. |
count | Number of characters to remove. |
<cfscript>
string="The quick brown fox jumps over the lazy dog."
start=5
count=5
writeOutput(RemoveChars(string,start,count))
</cfscript>