Comments on 2022-10-03 Converting words and sentences to identifiers

I might add a bit to remove anything from the beginning, too:

>(replace-regexp-in-region "\\`[^a-z]+" "" (point-min) (point-max))

– Anonymous 2022-10-28 17:20 UTC


Correct, though in my use-case the phrase always starts with a letter, so I didn’t need that.

– mbork 2022-10-29 10:15 UTC