Closed gagolews closed 4 years ago
Python has it, stringi should have it too:
Python 3.8.2 (default, Jul 16 2020, 14:00:26) [GCC 9.3.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> "a"*10 'aaaaaaaaaa'
And now stringi has it as well:
> library(stringi) > "a" %s*% 5 %s+% "b" [1] "aaaaab"
Python has it, stringi should have it too: