Jump to content

extracting number from a string


Al3grab

Recommended Posts

Posted

Hi ,

i want to Extract a number from a string

example :

i have "arena 20" string , i need a way to make a function that returns "20" only .

any help ? :idea:

Posted

Return only the number...

Try to use gettok function ?

  
string gettok ( string text, int tokenNumber, string / int separatingCharacter ) 
  

  
local myarea = "Area 20" 
local result = gettok ( myarea, 2, string.byte(' ') ) 
  

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...