Displaying 1 result from an estimated 1 matches for "test_anoth".
Did you mean:
test_another
2002 Jul 12
1
replacing text
...;, etc..
>Try:
>gsub("\\.","_",vect)
>> vect
>[1] "a.bcd.ef" "gh.i" "foo.blah" "test.another"
>> gsub("\\.","_",vect)
>[1] "a_bcd_ef" "gh_i" "foo_blah" "test_another"
>>
>Is this what you were looking for?
>-Jeff
Be Careful! The "_" character is an assignment operator!
gh_i
is the same as
gh <- i
or the same as
gh = i
HTH.
Marc
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-h...