http://qs1969.pair.com?node_id=11140504


in reply to Regex match for Any number of words?

https://perldoc.pl/perlrecharclass#Word-characters

http://unicode.org/reports/tr36/#Canonical_Represenation

https://metacpan.org/pod/Lingua::Stem::En

  • Comment on Re: Regex match for Any number of words?

Replies are listed 'Best First'.
Re^2: Regex match for Any number of words?
by sbrothy (Acolyte) on Jan 17, 2022 at 11:13 UTC
    Wow, thank you all. I'd expected you'd wait and see if I did any work of my own before answering but I completely forgot about this until now. These answers were all very helpful. Again, thank you! :)

      This is ofcourse C++ and not perl. Still, for completeness sake:

      I ended up using boost::regex_token_iterator.

      So in all it's glorious simplicity it ended up being just:

      boost::regex re("\\s+");

      Regards.