'Declaration
Function ReplaceVariableTokens( _ ByVal sourceString As String _ ) As String
string ReplaceVariableTokens( string sourceString )
Parameters
- sourceString
- The string to expand tokens in.
'Declaration
Function ReplaceVariableTokens( _ ByVal sourceString As String _ ) As String
string ReplaceVariableTokens( string sourceString )
This method replaces any valid variable tokens it finds with the corresponding values.
For example, if Job Variable "SomeVariable" has the value of "423", calling ReplaceVariableTokens("Current value: SomeVariable") returns the result "Current value: 423".
This method does not support the expansion of inline functions.