lulin_wa
2018-12-25 09:11:39

Hi, how to write an regexp which won’t match -[] at the same time?

(match “123[“
     [(regexp #rx”^[^-\\[\\]]+” (list str)) str])

This doesn’t work


lulin_wa
2018-12-25 09:21:34

A #px”” works for me :)