Is there a function in c that will return the index of a char in a char array?
For example something like:
char values[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
char find = 'E';
int index = findInedexOf( values, find );
|
|
|
|
|
|
|
|
||
|
|
|
|
|
||||
|
|
|
What about strpos?
Note that strpos expects a zero-terminated string, which means you should add a '\0' at the end. If you can't do that, you're left with a manual loop and search. |
||||||||||||||
|
|
|
Note, that if there's no |
||
|
|
|
|
You can use strchr to get a pointer to the first occurrence and the subtract that (if not null) from the original char* to get the position. |
||
|
|
|
|
There's also
|
||
|
|