I am writing my first application in ColdFusion. I am having
a bit of trouble with the syntax to perform a function. I have a
string: "abcdefghij". I would like to break it up into 3 seperate
strings: "abc" "def" "ghij", but I can't figure out how to do this.
Any guidance would be greatly appreciated. Thanks in advance!
To be nice, I would probably make use of the standard left(),
right()
and mid() functions, but that is by no means the only way to
skin this
requirement.
Thanks all, I got it figured out googling it. I am a
developer, so the logic I get, it's more or less the syntax changes
that I am trying to pick up on. It's an inherited application that
had to have mods made to it, and they needed them implemented asap.
So, I was just hoping for a push in the right direction, and google
helped. 🙂
In case anyone else has the same issue, I did indeed use the
right(), left(), mid() functions