Changes between Initial Version and Version 1 of Ticket #17837, comment 11


Ignore:
Timestamp:
2019-10-14T16:42:54+02:00 (6 years ago)
Author:
mdk

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #17837, comment 11

    initial v1  
    1 Ein greedy matcher sieht etwa so aus (das pattern kann einmal vorbereitet werden):
     1A greedy matcher would looks like this: (the pattern can be prepared once)
    22{{{
    33    Pattern pattern = Pattern.compile("\\d*");
     
    77    String code = matcher.group();
    88}}}
     9This could replace String extractCodeFromIgnoreKey(String key) in your patch.