Mailinglisten-Archive |
negativen Index verwenden! Handbuch: SUBSTRING_INDEX(str,delim,count) Returns the substring from string str before count occurrences of the delimiter delim. If count is positive, everything to the left of the final delimiter (counting from the left) is returned. If count is negative, everything to the right of the final delimiter (counting from the right) is returned: mysql> select SUBSTRING_INDEX('www.mysql.com', '.', 2); -> 'www.mysql' mysql> select SUBSTRING_INDEX('www.mysql.com', '.', -2); -> 'mysql.com' ******* Norbert Pfeiffer hat am 1 Oct 2002 um 23:38 Uhr geschrieben: > > Alle bisherigen Versuche mit SUBSTRING_INDEX führten zu > > keiner zufriedenstellenden Lösung. > klar, > fuer SUBSTRING_INDEX musst Du die Anzahl der Backslashes > wissen um anzugeben von wo aus die Rueckgabe starten soll. > Hast Du aber nicht ... --- Infos zur Mailingliste, zur Teilnahme und zum An- und Abmelden unter -->> http://www.4t2.com/mysql
php::bar PHP Wiki - Listenarchive