|
|
|
|
|
- NoRightCharacter and UNICODE
NoRightCharacter (Function) In french: SansCaractèreDroite Returns a string after removing the specified characters from the right side of the initial string. sString is string = "<<I am a character string>>"
sResult is string = NoRightCharacter(sString, ">")
Syntax
<Result> = NoRightCharacter(<Initial string> , <Characters to remove>)
<Result>: Character string Character string without the specified characters on the right 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 right side of the initial string. If this parameter corresponds to an empty string (""), <Result> will correspond to the initial string. Remarks NoRightCharacter and UNICODE If the string passed as a parameter is an ANSI string, the result will be an ANSI string. If the string passed in parameter is in Unicode format, the result will be in Unicode format. Note If the result of the NoRightCharacter function used on an ANSI string is assigned to a Unicode string (and vice versa), ANSI/Unicode conversion will be implicitly performed. Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|