strstr matching first occurrence in c
- by lex0273
I was wondering how could I match the string "just" in str1 if str1 contains the strings as:
"this is just\2323 a test"
// "just" will always be the same
I'm trying to match it using strstr but so far it won't match because of the \xxxx
Any suggestions on how to match it? Thanks