JavaVerbalExpressions icon indicating copy to clipboard operation
JavaVerbalExpressions copied to clipboard

Java regular expressions made easy.

Results 22 JavaVerbalExpressions issues
Sort by recently updated
recently updated
newest added

The expression: `regex().add("Java").zeroOrMore().build();` should generate the regex: `/(?:Java)*/`, just as the expression: `regex().maybe("Java").build();` generates the regex: `/(?:Java)?/`. However, the first expression actually generates the regex: `/Java*/`, which is not correct....

I can do `add("[0-9.,]")` but it defies the purpose of the library.

Hi, I would like to suggest adding support for RegEx lookarounds. Cheatsheet in this [link](http://www.rexegg.com/regex-quickstart.html/regex-lookarounds.html#lookarounds). Regards.

Hello, could we please have a public release for 1.7?

I have to find all occurrences of dates in an email: each occurrence and the startIndex and endIndex of the occurrence. I would like to use a human-readable regex builder...

In daily work, I love this tool very much, and I often need to use a single letter match in daily use, so I add this method, I hope you...

How can JavaVerbalExpressions build a simple regex like this: [\d,]+ ```java VerbalExpression.regex().anyOf("0123456789,").oneOrMore().build() ``` It 's too ugly! How about this one: [a-k\s\d,]+ ? It would be nice to add a...

The `` tag at the beginning of the block was mistakenly put as a ``

Wouldn't it be nice to add in the API the option to get the spans of the matches, in addition to just the matches, in the spirit of these python...

Enables https://github.com/VerbalExpressions/JavaVerbalExpressions/issues/63. Obviously this is too opinionated, so I doubt you'll merge this. But it is helpful to have this added control, as the original implementation seems to conceal retrieving...