repl.txt (571B)
1 2 {{alias}}( str ) 3 Trims whitespace from the end of a `string`. 4 5 "Whitespace" is defined as the following characters: 6 7 - \f 8 - \n 9 - \r 10 - \t 11 - \v 12 - \u0020 13 - \u00a0 14 - \u1680 15 - \u2000-\u200a 16 - \u2028 17 - \u2029 18 - \u202f 19 - \u205f 20 - \u3000 21 - \ufeff 22 23 Parameters 24 ---------- 25 str: string 26 Input string. 27 28 Returns 29 ------- 30 out: string 31 Trimmed string. 32 33 Examples 34 -------- 35 > var out = {{alias}}( ' \t\t\n Beep \r\n\t ' ) 36 ' \t\t\n Beep' 37 38 See Also 39 -------- 40