29.01.2014, 13:45
Hello guys, already got code to check if is the first character of string big, also after underscore is big: example Name_Lastname .. Check code for that.
Code:
But I want to check if all other characters are small example Name_Lastname
Code:
pawn Код:
new pos = strfind(inputtext, "_", true);
if(pos != -1)
{
if(inputtext[pos + 1] >= 'A' && inputtext[pos + 1] <= 'Z')
{
//my code here
}
}