instr | R Documentation |
Returns the position of the nth occurrence of str2 in str1. Returns 0 if str2 is not found. This code was first suggested by Abdelmonem Mahmoud Amer in https://stackoverflow.com/a/33005653/5421090
instr(str1, str2, startpos = 1, n = 1)
str1 |
main string in which str2 is to be found |
str2 |
substring contained in str1 |
startpos |
starting position in str1; default is 1 |
n |
which occurrence is to be found; default is 1 |
number representing the nth position of str2 in str1
library(survPen)
instr("character test to find the position of the third letter r","r",n=3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.