Created
January 21, 2026 09:21
-
-
Save trycf/137fc7e65e863ecdbf2392d9bdd1d2c1 to your computer and use it in GitHub Desktop.
TryCF Gist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfscript> | |
| str = "2.2.2.2 Internal Investment Funds DVP 259 25,90"; | |
| if(reFindNoCase("^\d.\d",str){ | |
| revStr = listToArray(reverse(str), " "); | |
| dump(revStr); | |
| } | |
| result = reFindNoCase("^\d.\d",str,1,true); | |
| dump(result); | |
| </cfscript> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment