Hey everyone, I had a quick problem:
I want to be able to send a string of data to a function and have it return that same string but only in alphanumerics. That is to say, if I sent it:
"Hello world 1!"
It should return:
"Helloworld 1"
Is this possible? I know I can do a verification using RegEx, but I want to actually alter the string to return only alphanumeric. Any help would be much appreciated!
MGM out
I want to be able to send a string of data to a function and have it return that same string but only in alphanumerics. That is to say, if I sent it:
"Hello world 1!"
It should return:
"Helloworld 1"
Is this possible? I know I can do a verification using RegEx, but I want to actually alter the string to return only alphanumeric. Any help would be much appreciated!
MGM out
Comment