Hi, I'm not sure, but try this:
Code:
STRING* tempStr = "#999";

function checkStr(STRING* str){
	// get amount of characters in the string:
	var char_amount = str_len(str);
	// init for loop:
	var i = 0;
	// run for loop, throw all characters:
	for(i = 0; i < char_amount; i ++){
		// get the character number here:
		var char_id = str_getchr(str, i);
		// run the switch statement to find the proper char:
		switch(char_id){
			// if we find (a) character:
			case 97: {
				// found [a] character:
				printf("Found [a] Character!");
				break;
			}		
			default:{
				break;
			}
		}
	}
}

void main(){
	checkStr("Blah");
}

Please note, that it uses ASCII number of the character (look at the manual), and capital letters have different ID then usual ones.
And as well, you'll need to insert all of the characters, by their ID into the switch case... But this is all dirty. Well, this is just an example.


Greets


Looking for free stuff?? Take a look here: http://badcom.at.ua
Support me on: https://boosty.to/3rung