Thursday, November 20, 2008
ColdFusion string operations
A few string operations in Coldfusion:
1) Mid: determines the subString between the given startindex , and a total of n characters.
Mid(String, startindex, n)
2) Left : Substring containing the first n characters
Left(String, n)
3) Right : Substring containing the last n characters.
Right(String, n)
and strings can be concatenated using &
No comments:
Post a Comment