I'm trying to determine if a character falls within a given range. I've searched, but can't find a way to do this.
if(data[0] >= character) {
// do this
}
The above is just a simplified example of what I am trying to achieve, where data is a string, and character is a char. I will also check to see whether data[0] is less than another character, but have omitted that for this example.
Can somebody guide me on what function to use?