Utf8.sub: Difference between revisions
		
		
		
		
		
		Jump to navigation
		Jump to search
		
				
		
		
	
| Line 35: | Line 35: | ||
</section>  | </section>  | ||
==Example #2==  | ==Example #2==  | ||
<section name="Server" class="server" show="true">  | |||
<syntaxhighlight lang="lua">  | |||
local input = "Happy Now"  | |||
local output = utf8.sub( input, 1, 5 )  | |||
outputChatBox( output, root, 255,255,255,true ) -- Happy  | |||
local output = utf8.sub( input, -4 )  | |||
outputChatBox( output, root, 255,255,255,true )  -- Now  | |||
local output = utf8.sub( input, -4, -1 )  | |||
outputChatBox( output, root, 255,255,255,true )  -- Now  | |||
</syntaxhighlight>  | |||
</section>  | |||
==See Also==  | ==See Also==  | ||
{{UTF8 functions}}  | {{UTF8 functions}}  | ||
Revision as of 01:19, 13 May 2017
Returns a substring of the string passed. The substring starts at i. If the third argument j is not given, the substring will end at the end of the string. If the third argument is given, the substring ends at and includes j.
Syntax
string utf8.sub ( string input [, int i = 1, int j = utf8.len( input ) ] )
Required Arguments
- input: A string character sequence
 
Optional Arguments
NOTE: When using optional arguments, you might need to supply all arguments before the one you wish to use. For more information on optional arguments, see optional arguments.
- i: An integer representing the beginning position (may be negative).
 - j: An integer representing the ending position (may be negative).
 
Returns
Returns a string substring of the original string, containing the selected range from the original string.
Example
Click to collapse [-]
ClientThis example shows how to extract a substring from a UTF-8 string.
local input = "Happy Now" local output = utf8.sub( input, 1, 4 ) outputConsole( output ) -- Happ local output = utf8.sub( input, -4 ) outputConsole( output ) -- Now local output = utf8.sub( input, -4, -1 ) outputConsole( output ) -- Now
Example #2
Click to collapse [-]
Serverlocal input = "Happy Now" local output = utf8.sub( input, 1, 5 ) outputChatBox( output, root, 255,255,255,true ) -- Happy local output = utf8.sub( input, -4 ) outputChatBox( output, root, 255,255,255,true ) -- Now local output = utf8.sub( input, -4, -1 ) outputChatBox( output, root, 255,255,255,true ) -- Now
See Also
- utf8.byte
 - utf8.char
 - utf8.charpos
 - utf8.escape
 - utf8.find
 - utf8.fold
 - utf8.gmatch
 - utf8.gsub
 - utf8.insert
 - utf8.len
 - utf8.lower
 - utf8.match
 - utf8.ncasecmp
 - utf8.next
 - utf8.remove
 - utf8.reverse
 - utf8.sub
 - utf8.title
 - utf8.upper
 - utf8.width
 - utf8.widthindex