Example:
string = \"abc|3g\" function(string) Solution: --> \"abc\" \"3g\"
Is there any idea how to split in the way as showed in the e
strsplit(string,split='|', fixed=TRUE)
This is the possible answer. Other solutions?