Displaying 1 result from an estimated 1 matches for "0mes".
Did you mean:
0'es
2005 Dec 21
1
random output with sub(fixed = TRUE)
...= ".")
sub(".asdf", "", v, fixed = TRUE)
The results I get are
> sub(".asdf", "", v, fixed = TRUE)
[1] "0" "1\0st\0\0" "2\0<af>\001\0\0" "3\0<af>\001\0\0"
[5] "4\0mes\0" "5\0<ba>\001\0\0" "6\0\0\0\0\0" "7\0\0\0m\0"
[9] "8\0\0\0t\0" "9\0<fe>\0\0\0" "10\0\0\0\0\0"
>
I expected "0" in the first entry and everything else would be unchanged. Your
results...