Why does STRSPLIT, contradictory to the documentation, need escaped backslashes in delimiter-specification?

5 visualizaciones (últimos 30 días)
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.

Respuesta aceptada

Suraj Mankulangara
Suraj Mankulangara el 23 de Feb. de 2018
Hello Frederick
The character '\n' is not generally treated as a newline character by MATLAB, unless it is along with certain functions such as sprintf, fprintf etc. Instead, MATLAB treats '\n' as a string. This behaviour should be evident from the following code:
c = 'a\nb'
c =
'a\nb'
If '\n' were treated as a newline character, the output would have been:
'a
b'
The 'strsplit' function treats '\n' as a newline character when used as part of the delimiter, whereas the 'split' function does not.
To specify newline characters, it is recommended that the newline function be used (starting from R2016b):
c = ['a' newline 'b']
c =
'a
b'
strsplit(c)
ans =
1×2 cell array
{'a'} {'b'}
Alternatively, you can use char(10) to specify the actual ASCII character associated with a new line.

Más respuestas (0)

Categorías

Más información sobre Characters and Strings en Help Center y File Exchange.

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by