Back to Prql

R-strings

web/book/src/reference/syntax/r-strings.md

0.13.12236 B
Original Source

R-strings

R-strings handle escape characters without special treatment:

prql
from artists
derive normal_string =  "\\\t"   #  two characters - \ and tab (\t)
derive raw_string    = r"\\\t"   # four characters - \, \, \, and t