10.05.2009, 22:27
Well I'm no expert in the field, but I'd guess you'd have to use a for/while loop to "scroll" through all of the characters in the string, then use a big switch thing to detect and eradicate capitals..
for(new a=0; a<strlen(string); a++)
{
switch(string[a])
{
case A: string[a] = a;
case B: string[a] = b;
}
}
NOTE: Except I'd expect you to use indentation :P
for(new a=0; a<strlen(string); a++)
{
switch(string[a])
{
case A: string[a] = a;
case B: string[a] = b;
}
}
NOTE: Except I'd expect you to use indentation :P

