Smeers
|
  |
| Joined: 14 Feb 2013 |
| Total Posts: 797 |
|
|
| 18 Jun 2016 10:51 AM |
Find if a certain segment of a string is in an object's name, then delete it, is what I want to do.
Basic stuff, I gotta learn up on my string manipulation.
gsub, but how? |
|
|
| Report Abuse |
|
|
sentry3
|
  |
| Joined: 01 May 2010 |
| Total Posts: 538 |
|
|
| 18 Jun 2016 11:38 AM |
depending on where it is... local string = game.Workspace.String if string.Value == object.Name then string:remove() end
|
|
|
| Report Abuse |
|
|
|
| 18 Jun 2016 12:28 PM |
local oldtext = "Hello world!" local name = workspace.Hello.Name local new = '' local match = oldtext:match(name) if match then new = new..oldtext:sub(math.max(oldtext:find(name)) + 1,#oldtext) print(new) end
oldtext being the orignal text, and new being the modified version of oldtext. Should print just "world!".
This siggy is copyrighted © |
|
|
| Report Abuse |
|
|