"| | !" doesn't work
"| |" works
What's the difference? The exclamation mark. So replace your exclamation mark with an underscore as well. I'd just make a function like this, if it's for demos. It converts anything that isn't a letter or number to an underscore.
Code:
stock convert_to_alnum(string[])
{
new len = strlen(string), i;
for(i=0;i<len;i++)
{
if(!isalnum(string[i]))
string[i] = '_';
}
}
__________________
No longer around. Thanks your support, everyone! As always:
THIS ONES FOR YOU
3000 PTS