From b3dbce71090bb01327865f0858266057ac057193 Mon Sep 17 00:00:00 2001 From: chme Date: Sat, 17 Mar 2018 05:12:45 +0100 Subject: [PATCH] [README] Add "starts with" operator to README_SMARTPL --- README_SMARTPL.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README_SMARTPL.md b/README_SMARTPL.md index aeb8ec15..afced012 100644 --- a/README_SMARTPL.md +++ b/README_SMARTPL.md @@ -44,13 +44,14 @@ Where valid field-names (with their types) are: * time_played (date) Valid operators include: -* is, includes (string) +* is, includes, starts with (string) * >, <, <=, >=, = (int) * after, before (date) * is (enumeration) The "is" operator must exactly match the field value, while the "includes" operator matches a substring. -Both matches are case-insensitive. +The "starts with" operator matches, if the value starts with the given prefix. +All three matches are case-insensitive. Valid operands include: * "string value" (string)