adTempus API
ArcanaDevelopment.adTempus.Client Namespace / ApplicationIntegration Class / ReplaceVariableTokens Method
The string to expand tokens in.


In This Topic
    ReplaceVariableTokens Method (ApplicationIntegration)
    In This Topic
    Expands variable tokens in a string
    Syntax
    'Declaration
     
    
    Public Function ReplaceVariableTokens( _
       ByVal sourceString As String _
    ) As String
    public string ReplaceVariableTokens( 
       string sourceString
    )
    public:
    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