helloburpJoin Date: 2011-08-26 Post Count: 14376 |
i might just be really stupid, but i am trying to divide up a number by commas but i can't get my mind wrapped around how this would be done. I'm not telling you to script it for me, but maybe just a few helpful notes to push me in the right direction. |
|
|
local numbers = {"1", "5", "2", "4", "10"}
for word in value:gmatch("[^,]+") do
print(word)
end
#Code print("Song Link: http://www.roblox.com/Deorro-vs-Swedish-House-Mafia-Save-The-5-Hours-item?id=340827217") |
|
|
Sorry I have it saved as a model and forgot to edit some things:
for number in numbers:gmatch("[^,]+") do*
#Code print("Song Link: http://www.roblox.com/Deorro-vs-Swedish-House-Mafia-Save-The-5-Hours-item?id=340827217") |
|
helloburpJoin Date: 2011-08-26 Post Count: 14376 |
i mean like to slice up numbers like this:
1,547,261 |
|
cntkillmeJoin Date: 2008-04-07 Post Count: 49450 |
You could reverse the integer and add a comma after every 3 digits when there is a next digit after it? |
|
helloburpJoin Date: 2011-08-26 Post Count: 14376 |
What is the function to reverse a string? (I will change the int to string) |
|
|
helloburpJoin Date: 2011-08-26 Post Count: 14376 |
And how would I add characters between strings? |
|
|
|
helloburpJoin Date: 2011-08-26 Post Count: 14376 |
Thanks. Love your namesnipe btw, surprised it wasnt taken by 2012. |
|
|
|
triodeJoin Date: 2011-08-13 Post Count: 5844 |
But my namesnipe... |
|