Bug 16063

Summary: `sed` treats `\B` incorrectly
Product: Busybox Reporter: Grant <grantgryczan>
Component: OtherAssignee: unassigned
Status: NEW ---    
Severity: minor CC: busybox-cvs
Priority: P5    
Version: 1.36.x   
Target Milestone: ---   
Hardware: All   
OS: Linux   
Host: Target:
Build:

Description Grant 2024-05-10 06:54:53 UTC
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.