|
|
|
|
|
- NoLeftCharacter and UNICODE
NoLeftCharacter (Function) In french: SansCaractèreGauche Returns a string after removing the specified characters from the left side of the initial string.
sString is string = "<<I am a character string>>" sResult is string = NoLeftCharacter(sString, "<") // sResult contains "I am a character string>>"
Syntax
<Result> = NoLeftCharacter(<Initial string> , <Characters to remove>)
<Result>: Character string Character string without the specified characters on the left side of the initial string. <Initial string>: Character string Initial character string. This string is not modified. <Characters to remove>: Character string List of characters to be removed from the left side of the initial string. If this parameter corresponds to an empty string (""), <Result> will correspond to the initial string. Remarks NoLeftCharacter and UNICODE If the string passed as a parameter is an ANSI string, the result will be an ANSI string. If the string passed as a parameter is a UNICODE string, the result will be a UNICODE string. Remark: If the result of NoLeftCharacter on an ANSI string is assigned to a UNICODE string (and vice versa), the conversion will be implicitly performed. Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|