@cm0002 to Programmer [email protected] • 2 days agowhat debugging regex feels likelemmy.mlimagemessage-square69arrow-up1848arrow-down113
arrow-up1835arrow-down1imagewhat debugging regex feels likelemmy.ml@cm0002 to Programmer [email protected] • 2 days agomessage-square69
minus-square@marcoslink17•2 days agoIf they are Perl regexes, like all regexes are supposed to be, you can have non-semantic whitespace and comments. But if you are using some system that enforces something different, you are out of luck.
minus-square@[email protected]linkfedilink6•2 days agoNot necessarily. For just debugging purposes, you can still break them up to help understand them. Even ignoring that, there are options in languages that don’t implement /x. https://wumpus-cave.net/post/2022/06/2022-06-06-how-to-write-regexes-that-are-almost-readable/index.html
If they are Perl regexes, like all regexes are supposed to be, you can have non-semantic whitespace and comments.
But if you are using some system that enforces something different, you are out of luck.
Not necessarily. For just debugging purposes, you can still break them up to help understand them. Even ignoring that, there are options in languages that don’t implement /x.
https://wumpus-cave.net/post/2022/06/2022-06-06-how-to-write-regexes-that-are-almost-readable/index.html