Changes between Initial Version and Version 1 of Ticket #18301


Ignore:
Timestamp:
2019-11-06T22:36:04+01:00 (6 years ago)
Author:
Don-vip
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #18301 – Description

    initial v1  
    33
    44MapCSS rule select all objects with value containing pKey=xxxxx
     5{{{
     6#!mapcss
    57*[mapillary][mapillary!~/^[a-zA-Z0-9_-]{22}$/][mapillary=~/**pKey=[a-zA-Z0-9_-]{22}**/] {
     8}}}
    69
    710Same regex don't match
     11{{{
     12#!mapcss
    813regexp_match("**pKey=([a-zA-Z0-9_-]{22}**)", tag("mapillary"))
     14}}}
    915
    1016But this one, yes
     17{{{
     18#!mapcss
    1119regexp_match("**.*pKey=([a-zA-Z0-9_-]{22}).***", tag("mapillary"))
     20}}}
    1221
    1322This like if regexp_match don't have the Perl regex flag **g**.