Changes between Version 42 and Version 43 of Stacomi gettext


Ignore:
Timestamp:
Jan 31, 2017 2:05:51 PM (8 years ago)
Author:
cedric
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Stacomi gettext

    v42 v43  
    4646 
    4747Autre expression régulière 
    48 (?<=gettext\()\K(.)+?(?=\)) 
     48{{{ 
     49(?<=gettext\()(.)+?(?=\)) 
     50}}} 
    4951 
    5052Positive Lookbehind (?<=gettext\() 
     
    5254gettext matches the characters gettext literally (case sensitive) 
    5355\( 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 match 
    55561st Capturing Group (.)+? 
    5657+? Quantifier — Matches between one and unlimited times, as few times as possible, expanding as needed (lazy) 
     
    6061Assert that the Regex below matches 
    6162\) matches the character ) literally (case sensitive) 
     63 
     64 
    6265 
    6366