From ffb694718486329c034414d8e05d10416e59c8c0 Mon Sep 17 00:00:00 2001 From: Shawn Routhier Date: Wed, 25 Nov 2015 12:18:37 -0800 Subject: [PATCH] [trac4101] Move the substring examples into a screen --- doc/guide/classify.xml | 36 ++++++++++-------------------------- 1 file changed, 10 insertions(+), 26 deletions(-) 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) == '' + -- 2.47.2