adTempus API
ArcanaDevelopment.adTempus.ApplicationIntegration Namespace / IExecutionContext Interface / ReplaceVariableTokens Method
The string to expand tokens in.


In This Topic
    ReplaceVariableTokens Method (IExecutionContext)
    In This Topic
    Expands variable tokens in a string
    Syntax
    'Declaration
     
    
    Function ReplaceVariableTokens( _
       ByVal sourceString As String _
    ) As String
    string ReplaceVariableTokens( 
       string sourceString
    )
    String^ ReplaceVariableTokens( 
       String^ sourceString
    ) 

    Parameters

    sourceString
    The string to expand tokens in.
    Remarks

    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.

    See Also