gilbert189 — 4/8/2024, 3:51:50 PM
let word = OneOrMore(.word)
let emailPattern = Regex {
    Capture {
        ZeroOrMore {
            word
            "."
        }
        word
    }
    "@"
    Capture {
        word
        OneOrMore {
            "."
            word
        }
    }
}

what is this

♥ 2 ↩ 0 💬 0 comments

comments

no comments