From: Shawn Routhier Date: Wed, 25 Nov 2015 20:18:37 +0000 (-0800) Subject: [trac4101] Move the substring examples into a screen X-Git-Tag: trac4204fd_base~1^2~1 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=ffb694718486329c034414d8e05d10416e59c8c0;p=thirdparty%2Fkea.git [trac4101] Move the substring examples into a screen --- diff --git a/doc/guide/classify.xml b/doc/guide/classify.xml index fdedb4ee21..a7797dac58 100644 --- a/doc/guide/classify.xml +++ b/doc/guide/classify.xml @@ -213,32 +213,16 @@ string. If length is longer than the remaining portion of the string then the entire remaining portion is returned. Some examples may be helpful: - - - substring('foobar', 0, 6) == 'foobar' - - - substring('foobar', 3, 3) == 'bar' - - - substring('foobar', 3, all) == 'bar' - - - substring('foobar', 1, 4) == 'ooba' - - - substring('foobar', -5, 4) == 'ooba' - - - substring('foobar', -1, -4) == 'ooba' - - - substring('foobar', 5, -4) == 'ooba' - - - substring('foobar', 10, 2) == '' - - + + substring('foobar', 0, 6) == 'foobar' + substring('foobar', 3, 3) == 'bar' + substring('foobar', 3, all) == 'bar' + substring('foobar', 1, 4) == 'ooba' + substring('foobar', -5, 4) == 'ooba' + substring('foobar', -1, -4) == 'ooba' + substring('foobar', 5, -4) == 'ooba' + substring('foobar', 10, 2) == '' +