search for: abdfghi

Displaying 1 result from an estimated 1 matches for "abdfghi".

Did you mean: abcdefghi
2010 Jul 21
3
String processing - is there a better way
...x]<-unlist(lapply(ysplit, paste, sep='', collapse='')) ? return(y) } x<-c("AA*.*A,,,", "**a.a*,,,A", "C*c..", "**aA") y<-c("abcdefghi", "abcdefghij", "abcde", "abcd") CleanRead(x,y) [1] "abdfghi" "cdeghij" "acde"??? "cd" Is there a better way to do this? Part 2) My next step in the string processing is to take the characters in the output of CleanRead and subtract 33 from the ascii value of the character to obtain an integer. Again I have a solution t...