regex-builder icon indicating copy to clipboard operation
regex-builder copied to clipboard

Write regular expressions in pure Java

Results 5 regex-builder issues
Sort by recently updated
recently updated
newest added

Let's say I have the following code: ``` FluentRe. match('a'). optional(). possessive(); ``` Currently, it makes this regular expression: `(?:\Q$\E)?+`. Please simplify to `\$?+`. This will make it easier for...

Let's say I have the following code `CharClass.union(CharClass.digit(), ',')`. Currently, it makes this regular expression: `[\d[,]]`. Please simplify to `[\d,]`. This will make it easier for humans to read the...

Currently, `Fluent.match(char)` will take the character (e.g. `$`) and wrap it with `\Q` and `\E` (e.g. `\Q$\E`). This is harder to read than `\` (e.g. `\$`). Please make `Fluent.match(char)` smart...

Please add toString() to all classes and return the current regular expression. This will help when stepping through code that is building a regular expression.

I would like APIs added to FluentRe to handle positive/negative lookahead/lookbehind. Currently, I think the only way is to use Re.