Changes between Version 108 and Version 109 of Help/Styles/MapCSSImplementation
- Timestamp:
- 2016-02-23T20:20:38+01:00 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Help/Styles/MapCSSImplementation
v108 v109 310 310 {{{ 311 311 #!mapcss 312 node[name $= "mypostfix"] /* value ends with 'mypostfix' */312 node[name $= "mypostfix"] /* value ends with 'mypostfix' */ 313 313 }}} 314 314 }}} … … 323 323 {{{ 324 324 #!mapcss 325 node[name *= "my substring"] /* value contains the substring 'my substring' */325 node[name *= "my substring"] /* value contains the substring 'my substring' */ 326 326 }}} 327 327 }}} … … 355 355 }}} 356 356 Case-insensitive matching can be enabled via the embedded flag expression `(?i)` (see [http://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html#CASE_INSENSITIVE Pattern.CASE_INSENSITIVE]). 357 {{{ 358 #!mapcss 359 [name =~ /^(?U)(\p{Lower})+$/] /* name consists of only lower case unicode characters */ 360 }}} 357 361 }}} 358 362 |-------------------------------------------------------------------------------
