Changes between Version 74 and Version 75 of Help/Styles/MapCSSImplementation
- Timestamp:
- 2014-12-03T13:33:25+01:00 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Help/Styles/MapCSSImplementation
v74 v75 344 344 }}} 345 345 {{{#!td align=left valign=top 346 [http://download.oracle.com/javase/ 6/docs/api/java/util/regex/Pattern.html#sum Regular expression] match346 [http://download.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html#sum Regular expression] match 347 347 348 348 }}} … … 353 353 /* Note, that reqular expressions have to be enclosed in /.../ */ 354 354 }}} 355 Case-insensitive matching can be enabled via the embedded flag expression `(?i)` (see [http://docs.oracle.com/javase/ 6/docs/api/java/util/regex/Pattern.html#CASE_INSENSITIVE Pattern.CASE_INSENSITIVE]).355 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]). 356 356 }}} 357 357 |------------------------------------------------------------------------------- … … 360 360 }}} 361 361 {{{#!td align=left valign=top 362 negated [http://download.oracle.com/javase/ 6/docs/api/java/util/regex/Pattern.html#sum Regular expression] match362 negated [http://download.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html#sum Regular expression] match 363 363 364 364 }}} … … 438 438 |------------------------------------------------------------------------------- 439 439 {{{#!td align=left valign=top 440 Presence of tag by [http://download.oracle.com/javase/ 6/docs/api/java/util/regex/Pattern.html#sum Regular expression] match (since r6547)440 Presence of tag by [http://download.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html#sum Regular expression] match (since r6547) 441 441 }}} 442 442 {{{#!td align=left valign=top … … 953 953 comparison operators 954 954 asin, atan, atan2, ceil, cos, cosh, exp, floor, log, max, min, random, round, signum, sin, sinh, sqrt, tan, tanh:: 955 the usual meaning, [http://download.oracle.com/javase/ 6/docs/api/java/lang/Math.html details]955 the usual meaning, [http://download.oracle.com/javase/7/docs/api/java/lang/Math.html details] 956 956 cond(b, fst, snd):: 957 957 b ? fst : snd::