@cm0002 to Programmer [email protected] • 1 day agoLike programming in bashlemmy.mlimagemessage-square179arrow-up11.54Karrow-down116cross-posted to: [email protected]
arrow-up11.53Karrow-down1imageLike programming in bashlemmy.ml@cm0002 to Programmer [email protected] • 1 day agomessage-square179cross-posted to: [email protected]
minus-square@kameecodinglink29•1 day 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]linkfedilinkEnglish10•1 day 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.