Bug 16063 - `sed` treats `\B` incorrectly
Summary: `sed` treats `\B` incorrectly
Status: NEW
Alias: None
Product: Busybox
Classification: Unclassified
Component: Other (show other bugs)
Version: 1.36.x
Hardware: All Linux
: P5 minor
Target Milestone: ---
Assignee: unassigned
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2024-05-10 06:54 UTC by Grant
Modified: 2024-05-10 06:54 UTC (History)
1 user (show)

See Also:
Host:
Target:
Build:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.