Split text by symbol: Difference between revisions
Jump to navigation
Jump to search
(Created page with "Split text by symbol (delimiter / separator) Approachs * Excel: (1) LEFT, RIGHT, FIND, LEN (2) MOD, FIND, LEN * PHP: explode * MySQL: [http://www.w3resource.com/mysql/string-...") |
(No difference)
|
Revision as of 18:01, 17 April 2015
Split text by symbol (delimiter / separator)
Approachs
- Excel: (1) LEFT, RIGHT, FIND, LEN (2) MOD, FIND, LEN
- PHP: explode
- MySQL: MySQL SUBSTRING_INDEX() function - w3resource