Try this
First:
<CFSET From=RemoveChars(From, 1, Find("<", From, 1))>
This strips everything upto and including the < character
Next:
<CFSET From=RemoveChars(From, Find(">", From, 1), 1)>
This removes the trailing > character
Finally if you want you can do:
<CFSET...