UtfSeek: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Server client function}}
{{Server client function}}
{{Needs_Example}}
The function returns the byte position at specified character position.
The function returns the byte position at specified character position.


Line 11: Line 10:
===Required Arguments===
===Required Arguments===
*'''theString:''' The [[string]].
*'''theString:''' The [[string]].
*'''position:''' An [[int]] with the specified charachter position.
*'''position:''' An [[int]] with the specified character position.


===Returns===
===Returns===
Line 21: Line 20:
local teststring = "Hello World"
local teststring = "Hello World"
local testseek = utfSeek ( teststring, 5 )
local testseek = utfSeek ( teststring, 5 )
outputChatBox ( seek )
outputChatBox ( testseek )
</syntaxhighlight>
</syntaxhighlight>
</section>
</section>

Latest revision as of 10:42, 21 May 2023