UtfCode: Difference between revisions
Jump to navigation
Jump to search
(Created page with "__NOTOC__ {{Server client function}} The function returns the string of the specified UTF code. ==Syntax== <syntaxhighlight lang="lua"> string utfChar ( int characterCode ) </syntaxhighlight> ===Require...") |
(Added example) |
||
(5 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{Server client function}} | {{Server client function}} | ||
The function returns the | The function returns the UTF codes of the given string. | ||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
string | int utfCode ( string theString ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
===Required Arguments=== | ===Required Arguments=== | ||
*''' | *'''theString:''' The [[string]] to get the UTF code of. | ||
===Returns=== | ===Returns=== | ||
Returns | Returns an ''[[int]]'' if the function was successful, ''false'' otherwise. | ||
===Example=== | |||
<section name="Example" class="both" show="true"> | |||
<syntaxhighlight lang="lua"> | |||
local theString = "UTF code" | |||
outputChatBox(utfCode (theString)) | |||
</syntaxhighlight> | |||
</section> | |||
==See Also== | ==See Also== | ||
{{Utility_functions}} | {{Utility_functions}} |
Latest revision as of 00:12, 4 July 2016
The function returns the UTF codes of the given string.
Syntax
int utfCode ( string theString )
Required Arguments
- theString: The string to get the UTF code of.
Returns
Returns an int if the function was successful, false otherwise.
Example
Click to collapse [-]
Examplelocal theString = "UTF code" outputChatBox(utfCode (theString))
See Also
- addDebugHook
- base64Decode
- base64Encode
- debugSleep
- decodeString
- encodeString
- fromJSON
- generateKeyPair
- getColorFromString
- getDevelopmentMode
- getDistanceBetweenPoints2D
- getDistanceBetweenPoints3D
- getEasingValue
- getNetworkStats
- getNetworkUsageData
- getPerformanceStats
- getRealTime
- getTickCount
- getTimerDetails
- getTimers
- getFPSLimit
- getUserdataType
- getVersion
- gettok
- isTransferBoxVisible
- setTransferBoxVisible
- hash
- inspect
- interpolateBetween
- iprint
- isOOPEnabled
- isTimer
- killTimer
- md5
- passwordHash
- passwordVerify
- pregFind
- pregMatch
- pregReplace
- removeDebugHook
- resetTimer
- setDevelopmentMode
- setFPSLimit
- setTimer
- ref
- deref
- sha256
- split
- teaDecode
- teaEncode
- toJSON
- tocolor
- getProcessMemoryStats
- utfChar
- utfCode
- utfLen
- utfSeek
- utfSub
- bitAnd
- bitNot
- bitOr
- bitXor
- bitTest
- bitLRotate
- bitRRotate
- bitLShift
- bitRShift
- bitArShift
- bitExtract
- bitReplace