Changes between Version 42 and Version 43 of Stacomi gettext
- Timestamp:
- Jan 31, 2017 2:05:51 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Stacomi gettext
v42 v43 46 46 47 47 Autre expression régulière 48 (?<=gettext\()\K(.)+?(?=\)) 48 {{{ 49 (?<=gettext\()(.)+?(?=\)) 50 }}} 49 51 50 52 Positive Lookbehind (?<=gettext\() … … 52 54 gettext matches the characters gettext literally (case sensitive) 53 55 \( matches the character ( literally (case sensitive) 54 \K resets the starting point of the reported match. Any previously consumed characters are no longer included in the final match55 56 1st Capturing Group (.)+? 56 57 +? Quantifier — Matches between one and unlimited times, as few times as possible, expanding as needed (lazy) … … 60 61 Assert that the Regex below matches 61 62 \) matches the character ) literally (case sensitive) 63 64 62 65 63 66