For example, `echo "hello" | sed 's/\B/ /g'` outputs `h el lo` rather than `h e l l o` as expected. `\B` should match every non-word boundary.