trim: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) (Add primary syntax) |
Lou Montana (talk | contribs) m (Add example) |
||
Line 28: | Line 28: | ||
|r2= [[String]] - trimmed string |RETURNVALUE2= | |r2= [[String]] - trimmed string |RETURNVALUE2= | ||
|x1= <code>"hewosentence!123" [[trim]] ["3e1o2hw", 0]; {{cc| | |x1= <code>[[trim]] " hello, how are you? "; {{cc|returns "hello, how are you?"}}</code> |EXAMPLE1= | ||
|x2= <code>"hewosentence!123" [[trim]] ["3e1o2hw", 0]; {{cc|returns "sentence!"}}</code> |EXAMPLE2= | |||
| [[select]] |SEEALSO= | | [[select]] |SEEALSO= | ||
}} | }} |
Revision as of 00:45, 24 November 2020
Description
Syntax
- Syntax:
- trim stringValue
- Parameters:
- stringValue: String - string to be trimmed. spaces, tabs and line returns are removed from both ends of stringValue.
- Return Value:
- String - trimmed string
Alternative Syntax
- Syntax:
- string trim [chars, where]
- Parameters:
- string: String - string to be trimmed
- chars: String - list of characters to be trimmed
- where: Number - Can be:
- 0 - trim at the beginning (left) and the end (right)
- 1 - trim at the beginning (left)
- 2 - trim at the end (right)
- Return Value:
- String - trimmed string
Examples
- Example 1:
trim " hello, how are you? "; // returns "hello, how are you?"
- Example 2:
"hewosentence!123" trim ["3e1o2hw", 0]; // returns "sentence!"
Additional Information
- See also:
- select
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
[[Category:Introduced with arma3dev version 2.01]][[ Category: arma3dev: New Scripting Commands | TRIM]][[ Category: arma3dev: Scripting Commands | TRIM]]