12/8 In elisp, when I do a match of ("\<!\-\-[.]*\-\-\>" nil comment),
I can't match that [.]*. Instead I have to use [a-z0-9\n_\ ] and
explicitly tell it what I want to match. Why doesn't [.]* work?
\_ Don't put [] around the '.' But you don't want a . anyway,
since the greedy * will likely chew up more than you want.
\_ Hi, I tried .* but still couldn't get it work. Do
do you have a better regexp than mine to match <!-- -->?
Thanks.
\_ Try [^-]* or look at what the html or w3 modes do.
\_ WOW COOL THANKS! How do I look at the regexp
(official ones) that describe w3? I'm writing
my own since its not built in and it is a pain |