Hi I am wondering what I am doing incorrectly here,
somestring = "2021_10_20-sess05-spk_M_C_010.pdf"
if somestring[11] != "-"
@show somestring[11],"incorrect"
end
>>>
("-", incorrect)
It shouldnt be executing since the 11th characters of the string is equal to “-” but it does. I have also tried with !==
resulting in the same result.