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

squid:s3599: Double Brace Initialization should not be used > Because Double Brace Initialization (DBI) creates an anonymous class with a reference to the instance of the owning object, > its...

Please clarify, can I build regex like _"(\d{1} Aaa)|(\d{2} Bbb)"_ using JavaVerbalExpressions?

captureWithName() in RealWorldUnitTest.class was empty so I wrote a comment why is it empty.

Actually generated: `(?:[^abb]*)` Expected to be generated: `(?:a(?!bb)|[^a])+` or something like that.

I think it would be better if we use constants for specifying modifiers. Inside the code, as it is constants are being used. I can send a PR maybe if...

This is a fix for issue https://github.com/VerbalExpressions/JavaVerbalExpressions/issues/36. zeroOrMore() and oneOrMore() methods now accept a parameter just like the maybe method() in order to generate correct expressions. As a temporary side...

It seems to me that the following expression: ``` java VerbalExpression testRegex = regex() .capture() .find("abc") .or("def") .build(); ``` should evaluate to the regex: `/(?:((?:abc)|(?:(?:def))))/`, but instead it evaluates to:...

Bumps [maven-jar-plugin](https://github.com/apache/maven-jar-plugin) from 3.2.2 to 3.3.0. Release notes Sourced from maven-jar-plugin's releases. 3.3.0 🚀 New features and improvements [MJAR-278] - Update plugin (requires Maven 3.2.5+) (#19) @​cstamas [MJAR-280] - Java...

dependencies

Bumps [maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) from 3.4.0 to 3.4.1. Release notes Sourced from maven-javadoc-plugin's releases. 3.4.1 [MJAVADOC-723] - Upgrade Maven Reporting API to 3.1.1/Complete with Maven Reporting Impl 3.2.0 (#158) @​pzygielo Skip Java...

dependencies

This adds a full module-info descriptor for users of Java 9+. It is packaged as a multi-release Jar so there should be no breakage. This is needed for * Using...