Feature #70030
Packagizer: Iterative global regex, add a way to do it in java
Status: | New | Start date: | 08/31/2015 | |
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | - | % Done: | 0% | |
Category: | Controlling | |||
Target version: | - | |||
Resolution: |
Description
regex with Iterative global regex
There's a option in regex that can help any user to use all the power of regex.
the use of /regex/g, the g indicates that you don't stop in first match
reference http://www.w3schools.com/jsref/jsref_regexp_g.asp
Using the url
http://www.w3schools.com/jsref/jsref_regexp_g.asp
I want to select all chars except the 's' char with /[^s]/g resulting a url without 's'
http://www.w3chool.com/jref/jref_regexp_g.ap
this feature is not available in java, so we can add our own via
<jd:matchall...> to concate all hits?
Related issues