Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

substring() in User Macro?

Guenter Huber
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 13, 2013

I d like to e.g. make version numbers dynamic dependent on space.

Currently they are only semi-dynamic with

#if ($space.key=="MY55")5.5#elseif ($space.key=="MY50")5#else <MacroError_VersionNotDefined>#end

With a substring() func this could be dynamic!
Takers?
Thanks
G.

3 answers

1 accepted

1 vote
Answer accepted
Guenter Huber September 5, 2013

As I neither get a professional answer here nor on the Velocity mailing list (at least not yet and you are bugging me to close the case) the workaround I see is via a variable;

## @noparams
#set($len = $space.key.length() - 2)
$space.key.substring($len)

1 vote
Guenter Huber
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 21, 2013

Thanks, Eddie
for the pointers to Velocity and Java.
They helped me iron out most kinks.
Here is code that actually works:

## @noparams
#set($len = $space.key.length() - 2)
\$space.key.length(): $len <br>
\$space.key.substring(\$len): $space.Key.substring($len)

It contains some nice Velocity features like escaped $s, etc.

What cost me a lot of time is

$space.Key.substring($space.key.length() - 2)

I have no idea why this construct doesn t work, while the variable as argument does.

0 votes
EddieW
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 14, 2013

User macros are coded in Velocity, that means both velocity specific and java methods will work.

#set($ver = $spaceKey.substring($spaceKey.length-2,2))

$ver

will be 55 or 50 depending.

See more methods to manipulate a Java String http://docs.oracle.com/javase/6/docs/api/java/lang/String.html

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events