Changes between Initial Version and Version 1 of Ticket #17837, comment 11
- Timestamp:
- 2019-10-14T16:42:54+02:00 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #17837, comment 11
initial v1 1 Eingreedy matchersieht etwa so aus (daspatternkann einmal vorbereitet werden):1 A greedy matcher would looks like this: (the pattern can be prepared once) 2 2 {{{ 3 3 Pattern pattern = Pattern.compile("\\d*"); … … 7 7 String code = matcher.group(); 8 8 }}} 9 This could replace String extractCodeFromIgnoreKey(String key) in your patch.