If my string is : aud\\ios, how do i check it out for the presence of \\ in it?
aud\\ios
\\
I tried using preg_match(\'\\\\\' , $string) but
preg_match(\'\\\\\' , $string)
if (strstr('aud\ios', '\\') !== false) { //Contains "\" }