pomsky icon indicating copy to clipboard operation
pomsky copied to clipboard

A new, portable, regular expression language

Results 48 pomsky issues
Sort by recently updated
recently updated
newest added

### Is your feature request related to a problem? Please describe. These days, many languages have top-notch tooling to help the developer write idiomatic, easy-to-understand code. Pomsky should be no...

enhancement
C-diagnostics
C-tooling

### Status Quo `[codepoint]` and `[.]` are special snowflakes: They can't contain other character classes, i.e. `[. 'x']` is illegal. ### Solution Deprecate `[codepoint]` and `[.]`. - Instead of `[codepoint]`,...

C-language

### Status Quo The meaning of `` is not intuitively clear, and even confusing to some: Someone suggested that `

C-language

Using the keyword `recursion`. For example: ```regexp '(' recursion* ')' | [not '()']+ ``` Compiles to ```regexp \((?R)*\)|[^()]+? ``` Which matches any text with balanced parentheses.

enhancement
C-language

Atomic groups exist to improve matching performance for regex engines that use backtracking by default, but they also change the regex behavior. The regex syntax is this: `(?>atomic group)`. The...

enhancement
C-language

Most regex engines support conditionals à là `(?(?=condition)then|else)` or `(?Pcondition)? (?(foo)then|else)`. The syntax varies slightly between implementations. A subset of this feature can be be made available in engines like...

enhancement
C-language

### Is your feature request related to a problem? Please describe. If you have lots of regexes, rewriting them in pomsky is currently an annoying, elaborate task. ### Describe the...

enhancement
C-tooling

oftentimes a "quote finding" or "bracket finding" regex might be something like `\"[^"]*\"` or `\([^()]\)`. one of the examples for references is `:(['"' "'"]) !['"' "'"]* ::1` which would not...

documentation

enhancement
C-tooling

enhancement
C-interop