@[email protected] to Programmer [email protected] • 2 months agoLike programming in bashlemmy.mlimagemessage-square184fedilinkarrow-up11.64Karrow-down118cross-posted to: [email protected][email protected]
arrow-up11.62Karrow-down1imageLike programming in bashlemmy.ml@[email protected] to Programmer [email protected] • 2 months agomessage-square184fedilinkcross-posted to: [email protected][email protected]
minus-square@[email protected]linkfedilink33•2 months agoMost of regex is pretty basic and easy to learn, it’s the look ahead and look behind that are the killers imo
minus-square@[email protected]linkfedilinkEnglish11•2 months ago(?=) for positive lookahead and (?!) for negative lookahead. Stick a < in the middle for lookbehind.
Most of regex is pretty basic and easy to learn, it’s the look ahead and look behind that are the killers imo
(?=)
for positive lookahead and(?!)
for negative lookahead. Stick a<
in the middle for lookbehind.