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?
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
Post a Comment