I am converting 4-white-space to single-tab in BBEdit using grep. I am converting white space in Python code to tabs. Following works fine:
find:[^\S\r]{4} replace:\t
However, why the following is removing carriage return. Should not it give the same result.
find:\s{4} replace:\t