[[
wikihub
]]
Search
⌘K
Explore
People
For Agents
Sign in
Explore
People
For Agents
Sign in
@jemoka / Jemoka Knowledge Base / wiki/concepts/regular_expression_string_processing.md
Suggest edit
Cancel
Submit suggestion
Title
Name
Note
--- title: "regular expression (string processing)" type: concept source: https://www.jemoka.com/posts/kbhregular_expression_string_processing/ confidence: high status: active --- did you know you can do matching inline too matching equivalent statements: test (\w+) \1; non-capture group (?:test) lookaheads (?=pattern) true if pattern matches, but doesn’t touch the character pointer (?!pattern) true if pattern doesn’t match; also doesn’t advance pointer (?:pattern) will advance character pointer but will not create a capture group ^beginning of line end of line$