in reply to search and replace desired portion from a line
.* means "go as far as you can using any character" so of course that matches the whole string (and \S matches the last non space character). If you only want non space chars after 0x you can use: 0x\S* instead .
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: search and replace desired portion from a line
by syedasadali95 (Acolyte) on May 30, 2019 at 07:01 UTC |