Nothing
## File Name: string_find_first.R
## File Version: 0.03
string_find_first <- function(string, symbol )
{
nc <- nchar(string)
ind <- NA
for (cc in 1:nc){
if( substring(string,cc,cc)==symbol ){
ind <- cc
break
}
}
return(ind)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.