### Example ```nim import strutils echo "abc \0 def".find("def") ``` ### Current Output ``` -1 ``` ### Expected Output ``` 6 ``` ### Possible Solution * Remove [this cstring optimization in strutils.find](https://github.com/nim-lang/Nim/blob/6b302bb71b6d9aab708b91f8d68957652ec30480/lib/pure/strutils.nim#L1875-L1880) and maybe move it as an overload to `cstrutils`. ### Additional Information * From forum thread https://forum.nim-lang.org/t/8874 ``` $ nim -v Nim Compiler Version 1.6.2 ```