A modern file tail utility based on Rx.Net which show cases reactive programming and Dynamic Data (see https://github.com/RolandPheasant/DynamicData)
GNU General Public License v3.0
2.23k
stars
249
forks
source link
Spaces break Regex in Search & Highlight #180
Open
CADbloke opened 7 years ago
Example text...
2017-08-02 11:58:29.086 +10:00 [Information] Parsing 28 of 238: "D:\DWG\SomeDrawing.dwg"
I want to highlight
Parsing 28 of 238
, the numbers can varyRegexes I tried to match
Parsing \d+ of \d+
- nopeParsing \d* of \d*
- nopeParsing \d*
- did highlight the word "Parsing" but nothing after itparsing\s\d+\sof\s\d+
actually highlighted the phrase.Does the search have a special treatment for spaces in the search string when it does Regex?