newline - Create newline character - MATLAB (original) (raw)
Main Content
Syntax
Description
c = newline
creates a newline character. newline
is equivalent to char(10)
or sprintf('\n')
. Usenewline
to concatenate a newline character onto a character vector or a string, or to split text on newline characters.
Examples
Create a newline character with newline
and concatenate it onto a character vector.
chr = 'Whose woods these are I think I know.'; chr = [chr newline 'His house is in the village though']
chr = 'Whose woods these are I think I know. His house is in the village though'
Although chr
displays on two lines, chr
is a 1-by-73 character vector that contains the two sentences, separated by a newline.
Create a newline character. Then use +
to concatenate the newline character and more text onto the end of a string.
str = "In Xanadu did Kubla Khan"; str = str + newline + "A stately pleasure-dome decree"
str = "In Xanadu did Kubla Khan A stately pleasure-dome decree"
Although str
displays on two lines, str
is a 1-by-1 string.
Tips
- The
newline
function does not return a carriage return character. A carriage return is equivalent tochar(13)
orsprintf('\r')
.
Extended Capabilities
Version History
Introduced in R2016b