I am working on an old program that used OpenBlueDragon as its cfml engine. I do not know if it was made special, or something changed in Coldfusion after v8, but the lsparsenumber() would strip out letters from a number, and return the number.
I recall it being in the Coldfusion docs when I googled it, because that is how I found that it did that. And now, as I work through fixing this app, that seems to be the number 1 road block making this app work right.
I know I could
<cfset num = ReReplaceNoCase(num,"[^0-9.]","","ALL")>
But the amount of times lsparsenumber was used to clean a number… phew…
Anyway, am I just day dreaming of something that did not exist or was this changed sometime after v8?