Change Strings with Line Breaks into Multiple Strings
DESCRIPTION:
Break up strings with "\n"s into multiple strings.
USAGE:
string.break.line(s)
REQUIRED ARGUMENTS:
s:
any S-PLUS object (it will be converted to a vector of character strings)
VALUE:
A list the length of the input. If the i'th input string contains n
newline, "\n", characters, it will be split into n+1 substrings at
the newline characters.