Break long character strings into multiple lines
This function attempts to break lomg character strings into multiple lines by replacing a given pattern by a newline character.
formatLabels( labels, maxCharPerLine = 14, maxWidth = NULL, maxLines = Inf, cex = 1, font = 1, split = " ", fixed = TRUE, newsplit = split, keepSplitAtEOL = TRUE, capitalMultiplier = 1.4, eol = "\n", ellipsis = "...")
labels |
Character strings to be formatted. |
maxCharPerLine |
Integer giving the maximum number of characters per line. |
maxWidth |
Maximum width in user coordinates. If given, overrides |
maxLines |
Maximum lines to retain. If a label extends past the maximum number of lines,
|
cex |
Character expansion factor that the user intends to use when adding |
font |
Integer specifying the font. See |
split |
Pattern to be replaced by newline ('\n') characters. |
fixed |
Logical: Should the pattern be interpreted literally ( |
newsplit |
Character string to replace the occurrences of |
keepSplitAtEOL |
When replacing an occurrence of |
capitalMultiplier |
A multiplier for capital letters which typically occupy more space than lowercase letters. |
eol |
Character string to separate lines in the output. |
ellipsis |
Chararcter string to add to the last line if the input label is longer than fits on
|
Each given element of labels
is processed independently. The character string is split using
strsplit
, with split
as the splitting pattern. The resulting shorter character strings are
then concatenated together with newsplit
as the separator. Whenever the length (adjusted using the
capital letter multiplier) of the combined
result from the start or the previous newline character exceeds maxCharPerLine
, or
strwidth
exceeds maxWidth
, the character specified by eol
is inserted (at the previous split).
Note that individual segements (i.e., sections of the input between occurrences of split
) whose
number of characters exceeds maxCharPerLine
will not be split.
A character vector of the same length as input labels
.
Peter Langfelder
s = "A quick hare jumps over the brown fox"; formatLabels(s);
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.