Check If String Contains Substring C

[Solved] Check If String Contains Substring C | Swift - Code Explorer | yomemimo.com
Question : check if string contains a character in c

Answered by : oskari-lehtinen

#include <stdio.h>
#include <string.h>
int main(void)
{ char str[] = "Hi, I'm odd!"; int exclamationCheck = 0; if(strchr(str, '!') != NULL) { exclamationCheck = 1; } printf("exclamationCheck = %d\n", exclamationCheck); return 0;
}

Source : https://stackoverflow.com/questions/58146750/how-do-i-check-if-a-string-contains-a-certain-character | Last Update : Wed, 04 May 22

Answers related to check if string contains substring c

Code Explorer Popular Question For Swift