@[email protected] to Programmer [email protected] • 2 days agoLike programming in bashlemmy.mlmessage-square178fedilinkarrow-up11.57K
arrow-up11.57KimageLike programming in bashlemmy.ml@[email protected] to Programmer [email protected] • 2 days agomessage-square178fedilink
minus-square@[email protected]linkfedilink33•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.