of     1   

teamkilled
#185276989Sunday, March 13, 2016 8:42 PM GMT

replace whitespaces in string with \ and replace \ in string with whitespace for example "hello there" to "hello\there" and vice versa I am terrible at string manipulation
PureConcept
#185277197Sunday, March 13, 2016 8:44 PM GMT

:gsub("/", " ") #code "Lua ~ PHP ~ CSS ~ HTML for me at least."
teamkilled
#185277237Sunday, March 13, 2016 8:45 PM GMT

wow I used that yesterday Im stupid
teamkilled
#185277984Sunday, March 13, 2016 8:55 PM GMT

> print( string.gsub("hello there", " ", "+") ) hello+there 1 it's adding a number onto the end of how many times it replaces it the wiki says it shouldn't do that
cntkillme
#185279968Sunday, March 13, 2016 9:21 PM GMT

It's not adding it to the end, it's just the second return result. It's easily discard-able by not assigning it to anything

    of     1