11.10.2014, 20:32
(
Последний раз редактировалось uZ1; 11.10.2014 в 21:02.
)
Код:
new ValidChars[][] = { "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "1", "2", "3", "4", "5", "6", "7", "8", "9", ".", ")", "(", "[", "]", "=", "$", "@", " " };
Код:
stock IsValidCharacters(const characters[]) { new checkamount; new lengh = strlen(characters); for(new char = 0; char < sizeof(ValidChars); char ++) { if(strfind(characters, ValidChars[char], true) == 0) { checkamount++; } if(checkamount == lengh) { return true; } } return false; }
I just want to check a text for these characters, I need this for file creations.