Why does STRSPLIT, contradictory to the documentation, need escaped backslashes in delimiter-specification?
Show older comments
According to the documentation, STRSPLIT is supposed to work like this:
C = strsplit('a\nb','\n')
C =
1×2 cell array
'a' 'b'
However, I get
C =
cell
'a\nb'
and
C = strsplit('a\nb','\\n')
C =
1×2 cell array
'a' 'b'
Why does the backslash need to be escaped? Is this an error in the code or in the documentation, or am I missing something? I use MATLAB R2017a.
I am aware of SPLIT, which works as described in the documentation and is perfectly applicable, but the recommendation over STRSPLIT is only noted in STRSPLIT's "Tips" section, which I discovered only after fiddling with STRSPLIT.
Accepted Answer
More Answers (0)
Categories
Find more on Characters and Strings in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!