Pricefield | Lemmy
  • Communities
  • Create Post
  • Create Community
  • heart
    Support Lemmy
  • search
    Search
  • Login
  • Sign Up
@[email protected] to Programmer [email protected] • 5 months ago

what debugging regex feels like

lemmy.ml

message-square
73
fedilink
  • cross-posted to:
  • [email protected]
906

what debugging regex feels like

lemmy.ml

@[email protected] to Programmer [email protected] • 5 months ago
message-square
73
fedilink
  • cross-posted to:
  • [email protected]
  • @[email protected]
    link
    fedilink
    English
    2•
    edit-2
    5 months ago

    Elisp has a nice notation for maintainably composing regexes like any other programming expression. Only language I’ve seen offer that. So instead of "/\\*\\(?:[^*]\\|\\*[^/]\\)*\\*+/", the regular expression to match C block comments could be expressed (with inline comments)

    (rx "/*"                          ; Initial /*
        (zero-or-more
         (or (not (any "*"))          ;  Either non-*,
             (seq "*"                 ;  or * followed by
                  (not (any "/")))))  ;  non-/
        (one-or-more "*")             ; At least one star,
        "/")                          ; and the final /
    

Programmer [email protected]

[email protected]
Create a post
You are not logged in. However you can subscribe from another Fediverse account, for example Lemmy or Mastodon. To do this, paste the following into the search field of your instance: [email protected]

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

  • Keep content in english
  • No advertisements
  • Posts must be related to programming or programmer topics
  • 59 users / day
  • 284 users / week
  • 1.34K users / month
  • 4.35K users / 6 months
  • 3 subscribers
  • 1.56K Posts
  • 55.5K Comments
  • Modlog
  • mods:
  • Feyter
  • adr1an
  • @[email protected]
  • Pierre-Yves Lapersonne
  • UI: 0.18.4
  • BE: 0.18.2
  • Modlog
  • Instances
  • Docs
  • Code
  • join-lemmy.org