[R] Regex to remove last character

David Winsemius dwinsemius at comcast.net
Mon Jan 3 23:44:07 CET 2011


On Jan 3, 2011, at 2:24 PM, rivercode wrote:

>
> Hi,
>
> Have been having trouble trying to figure out the right regex  
> parameters to
> remove the last "." in timestamp with the following format:
>
> Convert 09:30:00.377.853 to  09:30:00.377853

gsub("()(\\.)(.{3}$)", "\\1\\3" , "09:30:00.377.853")
[1] "09:30:00.377853"

>
> -- 
> View this message in context: http://r.789695.n4.nabble.com/Regex-to-remove-last-character-tp3172466p3172466.html

==

David Winsemius, MD
West Hartford, CT



More information about the R-help mailing list