If I have a variable which is a string, for example “Roblox is cool” and I want to remove the spaces in it, probably using string manipulation, is there a way for me to convert a string like that into “Robloxiscool”?
Basically how would I go about removing spaces from string values?
Examples of desired changes:
“Nice Game” → “NiceGame”
“Wow Cool Game” → “WowCoolGame”