On Fri, 23 Apr 2021 13:52:40 -0500 (CDT) David B Funk wrote: > On Fri, 23 Apr 2021, Steve Dondley wrote: > > > I'm looking at KAM.cf. There is this rule: > > > > body __KAM_WEB2 /INDIA based > > IT|indian.based.website|certified.it.company/i > > > > I'm wondering if there is a good reason why a singe period is used > > instead of something like \s+ which would catch multiple spaces > > whereas a singe period doesn't. > > Because '/indian.based.website'/ will match 'indian-based_website' > but \s will not.
\W+ might be better though