I was wondering how could I match the string "Just"
in str1
if str1
contains the strings as:
"this is Just/1.1.249.4021 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 /...
Any suggestions on how to match it? Thanks