R split string by symbol -


example:

string = "abc|3g" function(string) solution: --> "abc" "3g" 

is there idea how split in way showed in example?

strsplit(string,split='|', fixed=true) 

this possible answer. other solutions?


Comments

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

c# - Exception when attempting to modify Dictionary -