How do you ignore a single character or symbol in a string
I want to ignore the !
and /
in text
or actually just the first character no matter what it was.
For example, something like this:
text = ['!kick', '/ban']
the output should look like this:
>> kick
>> ban
instead of:
>> !kick
>> /ban