s = "hi@hello"
strsplit(s,"@")[[1]]
my output result is "hi" "hello"
but i got the different result when using the "*" symbol.
s = "hi*hello"
strsplit(s,"*")[[1]]
output result is "h" "i" "" "h" "e" "l" "l" "o"*
May i know the strsplit function working different on the * and + symbol.