minus-squaretrollhard9000@alien.topBtoEmacs@communick.news•What is the Emacs regex for matching a filename which contains periods, dashes and underscores?linkfedilinkEnglisharrow-up1·1 year agoThe second bracket part of your regex just needs some additions: [a-zA-Z0-9-._] Basically add any additional characters at the end after the ranges. linkfedilink
The second bracket part of your regex just needs some additions:
[a-zA-Z0-9-._]
Basically add any additional characters at the end after the ranges.