startsWith: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Applied Template:MacroFunction)
No edit summary
 
(11 intermediate revisions by 7 users not shown)
Line 2: Line 2:
|name=startsWith
|name=startsWith
|version=1.3b49
|version=1.3b49
|description
|description=
Returns 1 if the string starts with a certain sub string.
Returns {{true}} if the first parameter starts with the contents of the second parameter.


|usage=
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: result = startsWith(str, substr)]
[h: result = startsWith(string, substring)]
</source>
</syntaxhighlight>
 
Returns {{true}} if the string starts with a certain substring and {{false}} if not.


|examples=
|examples=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[r: endsWith("Test", "T")]
[r: startsWith("Test", "T")]
[r: endsWith("Test", "Te")]
[r: startsWith("Test", "Te")]
[r: endsWith("Test", "Tez")]
[r: startsWith("Test", "Tez")]
</source>
</syntaxhighlight>


Returns
'''Returns'''
    1
<pre>  1
    1
  1
    0
  0</pre>
}}
}}
[[Category:String Function]]
[[Category:String Function]]

Latest revision as of 17:39, 14 March 2023

startsWith() Function

Introduced in version 1.3b49
Returns true(1) if the first parameter starts with the contents of the second parameter.

Usage

[h: result = startsWith(string, substring)]

Returns true(1) if the string starts with a certain substring and false(0) if not.

Examples

[r: startsWith("Test", "T")]
[r: startsWith("Test", "Te")]
[r: startsWith("Test", "Tez")]

Returns

  1
  1
  0