trim: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Add primary syntax)
m (Text replacement - " | arma3dev |2.01 " to " | arma3 |2.02 ")
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Command|Comments=
{{RV|type=command


| arma3dev |Game name=
| arma3


|2.01|Game version=
|2.02


|gr1= Strings |GROUP1=
|gr1= Strings


| Trims a [[String|string]]. |DESCRIPTION=
| Trims a [[String|string]].


| [[trim]] stringValue |SYNTAX=
| [[trim]] stringValue


|p1= stringValue: [[String]] - string to be trimmed. spaces, tabs and line returns are removed from both ends of ''stringValue''. |PARAMETER1=
|p1= stringValue: [[String]] - string to be trimmed. spaces, tabs and line returns are removed from both ends of ''stringValue''.


| [[String]] - trimmed string |RETURNVALUE=
| [[String]] - trimmed string


|s2= string [[trim]] [chars, where] |SYNTAX2=
|s2= string [[trim]] [chars, where]


|p21= string: [[String]] - string to be trimmed |PARAMETER21=
|p21= string: [[String]] - string to be trimmed


|p22= chars: [[String]] - list of characters to be trimmed |PARAMETER22=
|p22= chars: [[String]] - list of characters to be trimmed


|p23= where: [[Number]] - Can be:
|p23= where: [[Number]] - Can be:
* 0 - trim at the beginning (left) and the end (right)
* 0 - trim at the beginning (left) and the end (right)
* 1 - trim at the beginning (left)
* 1 - trim at the beginning (left)
* 2 - trim at the end (right) |PARAMETER23=
* 2 - trim at the end (right)


|r2= [[String]] - trimmed string |RETURNVALUE2=
|r2= [[String]] - trimmed string


|x1= <code>"hewosentence!123" [[trim]] ["3e1o2hw", 0]; {{cc|Returns "sentence!"}}</code> |EXAMPLE1=
|x1= <code>[[trim]] " hello, how are you?  "; {{cc|returns "hello, how are you?"}}</code>


| [[select]] |SEEALSO=
|x2= <code>"hewosentence!123" [[trim]] ["3e1o2hw", 0]; {{cc|returns "sentence!"}}</code>
 
|seealso= [[select]]
}}
}}

Revision as of 14:56, 23 February 2021

Hover & click on the images for description

Description

Description:
Description needed
Groups:
Strings

Syntax

Syntax:
Syntax needed
Parameters:
stringValue: String - string to be trimmed. spaces, tabs and line returns are removed from both ends of stringValue.
Return Value:
Return value needed

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