var
      s1: string = "a"
      s2: string = r"\n"
      c1: char
      c2: char
    
    c1 = @s1[0]
    c2 = ???
    
    
    Run

How do I convert the string `r"\n"` to its char representation `'\n'`?

Reply via email to