Zulip Chat Archive
Stream: general
Topic: Regex for finding nonterminal simps?
Moritz Doll (Sep 26 2022 at 17:14):
I found a few nonterminal simps in analysis/special_functions/pow
and now I want to go through the whole file. Does have (or is able to write) a regex that finds simp
, but not the attribute [simp]
or simp only
?
Moritz Doll (Sep 26 2022 at 18:06):
(?!\[)(simp)(?!_)(?!\])(?!\sonly)
this seems to work in case anyone is interested
Last updated: Dec 20 2023 at 11:08 UTC