Description Usage Arguments Author(s) Examples
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.
1 2 3 4 5 6 7 | x %+% y
x %-% y
x %s*% y
x %s/% y
|
x |
a string |
y |
a string |
Ben Wiseman, benjamin.wiseman@kornferry.com
1 2 3 4 5 6 | ("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.