the original said reggae but i misread it as regex and got this idea lol

original comic artist: thisstupidtwink@insta

    • glibg10b@lemmy.zip
      link
      fedilink
      English
      arrow-up
      4
      ·
      8 days ago

      I use it in Vim. Sometimes you want to rename a variable that’s present multiple times in the same line

    • a_jeering_serpent@sopuli.xyz
      link
      fedilink
      English
      arrow-up
      3
      ·
      8 days ago

      (?:\d{3}-){2}(?:\d{4}) would match a ten digit us-format phone number, though I’d recommend using two literally instead of a repeat for maintainability reasons. Regex needs no assistance being terse and obtuse, humans need time to understand regex patterns, even ones they wrote not long ago. Make that part easier on your collaborators, and treat your past and future selves like remote asynchronous collaborators, always.