[Home] [Downloads] [Search] [Help/forum]


Register forum user name Search FAQ

Gammon Forum

[Folder]  Entire forum
-> [Folder]  MUSHclient
. -> [Folder]  Lua
. . -> [Subject]  How to count words in a variable

How to count words in a variable

It is now over 60 days since the last post. This thread is closed.     [Refresh] Refresh page


Posted by Rene   (46 posts)  [Biography] bio
Date Tue 03 Oct 2017 12:48 AM (UTC)
Message
I want to count words in a variable to know how many words it contains, I assume it can be done by matching white spaces, assuming the variable is called 'vnum', how would I do that?

Also, how can I break up each word in 'vnum' into a separate value in an array? meaning if 'vnum' is how are you today, the array would be vnum = {"how", "are", "you", "today"}
Thanks!
[Go to top] top

Posted by Nick Gammon   Australia  (22,975 posts)  [Biography] bio   Forum Administrator
Date Reply #1 on Tue 03 Oct 2017 07:33 AM (UTC)

Amended on Thu 05 Oct 2017 09:46 PM (UTC) by Nick Gammon

Message
You can use string.gmatch, like this:


for w in string.gmatch ("nick takes a stroll", "%a+") do
  print (w)
end -- for


By altering the regular expression (ie. "%a+") you can change what you define a "word" to be (eg. does it include numbers?)

Having done that you can count things (eg, add one to a counter instead of printing).

Similarly you could insert each word into an array.


http://www.gammon.com.au/scripts/doc.php?lua=string.gmatch

- Nick Gammon

www.gammon.com.au, www.mushclient.com
[Go to top] top

The dates and times for posts above are shown in Universal Co-ordinated Time (UTC).

To show them in your local time you can join the forum, and then set the 'time correction' field in your profile to the number of hours difference between your location and UTC time.


10,359 views.

It is now over 60 days since the last post. This thread is closed.     [Refresh] Refresh page

Go to topic:           Search the forum


[Go to top] top

Quick links: MUSHclient. MUSHclient help. Forum shortcuts. Posting templates. Lua modules. Lua documentation.

Information and images on this site are licensed under the Creative Commons Attribution 3.0 Australia License unless stated otherwise.

[Home]


Written by Nick Gammon - 5K   profile for Nick Gammon on Stack Exchange, a network of free, community-driven Q&A sites   Marriage equality

Comments to: Gammon Software support
[RH click to get RSS URL] Forum RSS feed ( https://gammon.com.au/rss/forum.xml )

[Best viewed with any browser - 2K]    [Hosted at HostDash]