Print

Trim

Removes white characters from the beginning and end of the string. If no such characters are found at the beginning or end of the string, the unchanged string is returned.

Syntax

Trim(stringToTrim);

Function arguments

  • stringToTrim – (String) a string value to be trimmed.

Return value

This function returns String.
Returns trimmed string.

Examples

Example 1:
'result’ variable value will be „abc”.

result = Trim("   abc   ");

Example 2:
'result’ variable value will be „abc xyz”.

result = Trim("   abc xyz   ");

Example 3:
'result’ variable value will be „abcxyz”.

result = Trim("abcxyz");
Czy artykuł był pomocny?
0 na 5 gwiazdek
5 Stars 0%
4 Stars 0%
3 Stars 0%
2 Stars 0%
1 Stars 0%
5
How can we improve this article?
How Can We Improve This Article?