This implementation looks for variables in the string like "${xyz}" or "${abc.DEF.ghi}". The {@link #getVariableValue(String)} methodis then used to obtain the actual value for the variable.
"$$" works as the escape of "$", so for example "$${abc}" expands to "${abc}" where "${abc}" would have expanded to "value-of-abc". A lone "$" is left as-is, so "$abc" expands to "$abc". @author Kohsuke Kawaguchi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|