Skip to Content
Lua Quick Start Guide
book

Lua Quick Start Guide

by Gabor Szauer
July 2018
Beginner
202 pages
5h 42m
English
Packt Publishing
Content preview from Lua Quick Start Guide

Extracting a substring

The string.sub function takes three arguments: the string, a start index, and a stop index. The stop index is inclusive. This function will return a substring between the two indices passed. The last argument is optional; if an end index is not provided, string.sub will just return everything to the end of the string:

local sentence = "The quick brown fox"local word = "quick"local start = string.find(sentence, word)start = start + #word + 1local result = string.sub(sentence, start)print("Who was quick?")print ("the " .. result)

All of the functions in the string library are implemented with respect to the : operator. This means that the preceding code could be re-written as follows:

local sentence = "The quick brown ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Beginning Lua Programming

Beginning Lua Programming

Kurt Jung, Aaron Brown
Vim Masterclass

Vim Masterclass

Jason Cannon

Publisher Resources

ISBN: 9781789343229Supplemental Content