15
regex and awk...
(programming.dev)
A community for everything relating to the GNU/Linux operating system
Also check out:
Original icon base courtesy of lewing@isc.tamu.edu and The GIMP
You've got lots of answers, so I'll just say that shorthand character classes like \s, \w, and \d - all those backslash ones - are not widely supported, especially in the only POSIX tools. Many tools have an extended or Perl mode that makes them available, but some don't. You can't rely on them being everywhere. That's why you're getting suggestions to use explicit, long-form character classes like [0-9].