feature #1209 added the starts with, ends with, and matches operators (fabpot)
authorFabien Potencier <fabien.potencier@gmail.com>
Wed, 2 Oct 2013 19:38:09 +0000 (21:38 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Wed, 2 Oct 2013 19:38:09 +0000 (21:38 +0200)
commit606f88b1bc1bae7e9e2d003f4f770b5c4cfea220
tree1b18b1a8d288a0c9aeec85a919d05b0371e213c3
parentc579a8141477531ce2afd8a441aaccc11033f37d
parentb66181d1c56c5c8166194b4a9694f64084de79b0
feature #1209 added the starts with, ends with, and matches operators (fabpot)

This PR was merged into the master branch.

Discussion
----------

added the starts with, ends with, and matches operators

Adds three new operators:

 * `ends with`
 * `starts with`
 * `matches`

I've not added the `contains` operator as it would be equivalent with the existing `in` one.

TODO:

 * [x] add docs
 * [x] fix on PHP 5.2.

Commits
-------

b66181d added the starts with, ends with, and matches operators
CHANGELOG