New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support \Q\E quotation #22
Comments
|
It's a nice feature, I will work on this point, you can fork the project and add this feature, then i will merge your request. |
|
This feature is now supported |
vkopichenko
added a commit
to vkopichenko/Generex
that referenced
this issue
Jul 2, 2019
* escape @&"<#~ automaton special chars * proper handling of multiple adjacent quote groups * support for multiline patterns * compiled regex caching * exhaustive test case for everything above
vkopichenko
added a commit
to vkopichenko/Generex
that referenced
this issue
Jul 2, 2019
[ERROR] Source option 5 is no longer supported. Use 6 or later. [ERROR] Target option 1.5 is no longer supported. Use 1.6 or later. Initially Java level was missing in pom that caused problems when importing project into IntelliJ IDEA. I've checked that https://repo1.maven.org/maven2/com/github/mifmif/generex/1.0.2/generex-1.0.2.jar was built with Java 5 and added this explicitly into pom. Now have to revert this to make CI build to pass. Would happily use Java 8 features in the fix and the test, BTW.
vkopichenko
added a commit
to vkopichenko/Generex
that referenced
this issue
Jul 2, 2019
…553247272 [ERROR] Source option 5 is no longer supported. Use 6 or later. [ERROR] Target option 1.5 is no longer supported. Use 1.6 or later. Have to bump java version to 6. Bump further right to 8 may be considered too.
vkopichenko
added a commit
to vkopichenko/Generex
that referenced
this issue
Jul 2, 2019
…553253525 [ERROR] Failed to execute goal org.codehaus.mojo:cobertura-maven-plugin:2.6:instrument (verification) on project generex: Execution verification of goal org.codehaus.mojo:cobertura-maven-plugin:2.6:instrument failed: Plugin org.codehaus.mojo:cobertura-maven-plugin:2.6 or one of its dependencies could not be resolved: Could not find artifact com.sun:tools:jar:0 at specified path /usr/local/lib/jvm/openjdk11/../lib/tools.jar Had to switch from cobertura to jacoco due to mojohaus/cobertura-maven-plugin#30 still not resolved. Plus minor build and javadoc improvements.
vkopichenko
added a commit
to vkopichenko/Generex
that referenced
this issue
Jul 2, 2019
…553275106 [ERROR] Failed to execute goal org.codehaus.mojo:findbugs-maven-plugin:3.0.3:findbugs (findbugs) on project generex: Unable to parse configuration of mojo org.codehaus.mojo:findbugs-maven-plugin:3.0.3:findbugs for parameter pluginArtifacts: Cannot assign configuration entry 'pluginArtifacts' with value '${plugin.artifacts}' of type java.util.Collections.UnmodifiableRandomAccessList to property of type java.util.ArrayList Updating findbugs version per https://stackoverflow.com/questions/53676071/maven-clean-command-java-util-collections-unmodifiablerandomaccesslist-to-prope.
|
The initial requote implementation here were vulnerable to some problems:
These were fixed in PR #48. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It would be nice to provide possiblity to escape some parts of regex from generation without need to escape each special character one by one.
For example I'd like to use
instead of
Here is a workaround code to transform the former to latter:
The text was updated successfully, but these errors were encountered: