[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Split string and escape delimiter
- From: Minh Ngo <mkngo87@...>
- Date: Sun, 1 Jun 2014 01:01:23 -0400
There are a lot of examples on splitting a string on the net.
What I'm looking for is the ability to include the delimiter in the strings.
The following desirable example with '\' as the escape character:
````
'foo','bar','foo,bar' = split('foo,bar,foo\\,bar' , ',')
````
--
Minh Ngo