quoted_char

Function quoted_char 

Source
pub fn quoted_char(input: &str) -> IResult<&str, &str>
Expand description
QuotedChar =
    %x09        ; tab
  / %x20-21     ; space - "!"
  / %x23-5B     ; "#" - "["
  / %x5D-10FFFF ; "]"+
  / EscapedChar
  / NL