cm0002@infosec.pub to Programming@programming.dev · 4 days agoRegular expressions that work “everywhere”www.johndcook.comexternal-linkmessage-square1linkfedilinkarrow-up121arrow-down12
arrow-up119arrow-down1external-linkRegular expressions that work “everywhere”www.johndcook.comcm0002@infosec.pub to Programming@programming.dev · 4 days agomessage-square1linkfedilink
minus-squarejokro@feddit.orglinkfedilinkarrow-up11·edit-24 days agoIn theoretical CS, there is just * and |. All other operations can be emulated with them. Of course this is not practical. Things like \s are really useful so you don’t have to list every future (unicode) variant of whitespace.
In theoretical CS, there is just * and |. All other operations can be emulated with them. Of course this is not practical.
Things like \s are really useful so you don’t have to list every future (unicode) variant of whitespace.