Remove leading backslash from string R

后端 未结 1 1077
谎友^
谎友^ 2021-01-24 17:25

Here is the string:

> raw.data[27834,1]
[1] \"\\xff$GPGGA\"

I have tried advice from the following two questions, but with no luck:

<
相关标签:
1条回答
  • 2021-01-24 17:38

    There is no backslash in that string. The displayed backslash is an escape marker. This and other features about entry and display of "special situations" are described in the ?Quotes help page.. You've been given one regex rather elliptical approach to removal. Here are a couple of other approaches .... only some of which actually succeed because the \ff is the first "character" and it's not really legal as an R character:

     s <- "\xff$GPGGA"
     strsplit(s, "")
    #[[1]]
    #[1] NA
    
    Warning message:
    In strsplit(s, "") : input string 1 is invalid in this locale
    
     substr(s, 1,1)
    #Error in substr(s, 1, 1) : invalid multibyte string at '<ff>$GP<47>GA'
     gsub('.*([^A-Za-z].*)', '\\1',"\xff$GPGGA")#[1]
    #[1] "$GPGGA"
     ?Quotes
     gsub('\xff', '',"\xff$GPGGA")#[1]
    #[1] "$GPGGA"
    

    I think the reason that the regex functions don't choke on that string is that regex is actually a system mediated process whereas strsplit and substr are internal R functions.

    @RichardScriven posts an example and when I tried to replicated it, I get yet a different example that shows the mapping to displayed characters is system specific. I'm on OSX 10.10.1 (Yosemite)>

    cat('\xff')
    ˇ
    

    (I left off the octothorpe (#) that I would normally out in.)

    0 讨论(0)
提交回复
热议问题