string_arithmetic | R Documentation |
Perform string concatenation and arithmetic is a similar way to other languages. String division is not present in languages like Python, although arguably it is more useful than string multiplication and can be used with regulr expressions.
x %+% y
x %-% y
x %s*% y
x %s/% y
x |
a string |
y |
a string |
Ben Wiseman, benjamin.wiseman@kornferry.com
("ab" %+% "c") == "abc" # TRUE
("abc" %-% "b") == "ac" # TRUE
("ac" %s*% 2) == "acac" # TRUE
("acac" %s/% "c") == 2 # TRUE
# String division with a regular expression:
'an apple a day keeps the malignant spirit of Steve Jobs at bay' %s/% 'Steve Jobs|apple'
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.