StrTrimAll

Eliminates a specific char from the whole string.

Function Group Execution Windows Embedded Thin Client Mobile Access
StrTrimAll String Synchronous Supported Supported Supported Supported

Syntax

  StrTrimAll( strReference, optStrTrimChar )  
strReference
A The source string.
optStrTrimChar
Char that will be removed from the string. If this parameter is omitted, the space char will be removed from the string, by default.

Returned value

Returns a string equal to strReference minus the characters removed by the function.

Examples

Tag Name Expression
Tag StrTrimAll( “Studio version 7.0 “, ” “) // Returned value = “Studioversion7.0″

StrTrimAll