This version is out of date, covering development from v9.0.0 to v9.3.0. It is maintained here only for inbound reference links from elsewhere. It is no longer actively updated.

Jump to the current version of aTbRef

Tinderbox v9 Icon

String.trim(["punctuation"])


Operator Type: 

Operator Scope of Action: 

Operator Purpose: 

Operator First Added: 

Operator Altered: 

 Function   [other Function type actions]

 Item   [operators of similar scope]

 Data manipulation   [other Data manipulation operators]

 9.0.0

 


String.trim(["punctuation"])

The .trim operator removes unwanted characters from the start and end of a string. With no arguments, .trim removes whitespace and end of line characters.

"Hello world ".trim; → "Hello world"

If used with the argument "punctuation", .trim also removes punctuation marks.

"[tab] Hello world?! ".trim("punctuation") → "Hello world"

The resulting string retains any stying in the source string.