strsub From LUA previous page next page strsub QS Informatica - Manuale LUA ›› Lua Standard Library ›› String Manipulation Library ›› strsub strsub (S, I [, J]) Returns another string,which is a substring of S, starting at I and running until J; I and Jmay be negative. The default value of J is -1 (the end.) strsub(s,1,j) returns a preflx; strsub(s, -i) returns a sufflx. previous page start next page