https://bugs.kde.org/show_bug.cgi?id=418636
--- Comment #2 from Henry Pfeil <hpf...@psnarf.org> --- I noticed that the regular expression does not anchor the other expressions in the search criterion. The character class [a-f]+ matches every uppercase and lowercase abcdef in the file. The expression [0-9]+ finds zero matches. The expression [0-9a-f]+ matches every lowercase a..f preceded by a space. I'm going back to "O'Reilly Mastering Regular Expressions". My regex is wrong. Sorry for reporting my incorrect expressions as a bug. I thought [0-9] would match any number. Sorry about that. -- You are receiving this mail because: You are watching all bug changes.