Displaying 1 result from an estimated 1 matches for "roger_sector_specialist".
2008 Aug 16
1
How to remove white spaces
All,
I am storing a string of email addresses in a table and when I retrieve
them using a RODBC statement such as:
test = sqlQuery(xf, "select specialist from
roger_sector_specialist")$specialist
'test' is of mode list and includes a bunch of white space. As a
work-around I convert 'test' to a character string, split it based on a
white space, then take the first element:
test = strsplit(as.character(test), " ")
emaillist = test[[1]][1]
But...