例:
string = "abc|3g" function(string) Solution: --> "abc" "3g"
例に示されているように分割する方法はありますか?
strsplit(string,split='|', fixed=TRUE)
これが可能な答えです。他のソリューション?