Removes characters from a string.
A copy of the string, with count characters removed from the specified start position. If no characters are found, returns zero.
RemoveChars(string, start, count)
<cfscript>
string="The quick brown fox jumps over the lazy dog."
start=5
count=5
writeOutput(RemoveChars(string,start,count))
</cfscript>
Sign in to your account