How do I get Variable size
Hi,
How do I get the number of characters from a variable.
Example:
#set($test1 = "ABCD")
#set($test2 = "EFG")
What I would like to get is :
4 for the $test1 variable since there are 4 characters
3 for the $test2 variable since there are 3 characters
If this is not possible, is there a way I can get the first character of each variable so i would get :
"A" for $test1
"E" for $test2
Discussions are closed to public comments.
If you need help with Cascade CMS please
start a new discussion.
Keyboard shortcuts
Generic
? | Show this help |
---|---|
ESC | Blurs the current field |
Comment Form
r | Focus the comment reply box |
---|---|
^ + ↩ | Submit the comment |
You can use Command ⌘
instead of Control ^
on Mac
1 Posted by giorgio.politan... on Jul 17, 2014 @ 06:43 PM
i figured out another way you can close this ticket thanks.
2 Posted by Ryan Griffith on Jul 17, 2014 @ 07:37 PM
Hi,
Because the variable is a Java String, you can utilize any of the class' methods.
For instance, to obtain the length of the variable, you can use:
And, to get the first character, you can use:
Please let me know if you have any questions.
Thanks!
Ryan Griffith closed this discussion on Aug 04, 2014 @ 12:48 PM.