Skip to main content
  1. About
  2. For Teams
added 369 characters in body
Source Link
Robby Cornelissen
  • 98.2k
  • 23
  • 153
  • 179

Since R 4.0.0, you can use raw character constants (mentioned on r-devel NEWS):

There is a new syntax for specifying rawraw character constants similar to the one used in C++: r"(...)"r"(...)" with ...... any character sequence not containing the sequence ‘⁠)"⁠’⁠)"⁠’. This makes it easier to write strings that contain backslashes or both single and double quotes.

x <- r"(C:\Users\Me\Desktop\Data\hotel_bookings.csv)"

Since R 4.0.0, you can use raw character constants (mentioned on r-devel NEWS):

There is a new syntax for specifying raw character constants similar to the one used in C++: r"(...)" with ... any character sequence not containing the sequence ‘⁠)"⁠’. This makes it easier to write strings that contain backslashes or both single and double quotes.

x <- r"(C:\Users\Me\Desktop\Data\hotel_bookings.csv)"

Since R 4.0.0, you can use raw character constants (mentioned on r-devel NEWS):

There is a new syntax for specifying raw character constants similar to the one used in C++: r"(...)" with ... any character sequence not containing the sequence ⁠)"⁠’. This makes it easier to write strings that contain backslashes or both single and double quotes.

x <- r"(C:\Users\Me\Desktop\Data\hotel_bookings.csv)"
added 369 characters in body
Source Link
Robby Cornelissen
  • 98.2k
  • 23
  • 153
  • 179

Since R 4.0.0, you can use raw character constants (mentioned on r-devel NEWS):

There is a new syntax for specifying raw character constants similar to the one used in C++: r"(...)" with ... any character sequence not containing the sequence ‘⁠)"⁠’. This makes it easier to write strings that contain backslashes or both single and double quotes.

x <- r"(C:\Users\Me\Desktop\Data\hotel_bookings.csv)"

Since R 4.0.0, you can use raw character constants:

x <- r"(C:\Users\Me\Desktop\Data\hotel_bookings.csv)"

Since R 4.0.0, you can use raw character constants (mentioned on r-devel NEWS):

There is a new syntax for specifying raw character constants similar to the one used in C++: r"(...)" with ... any character sequence not containing the sequence ‘⁠)"⁠’. This makes it easier to write strings that contain backslashes or both single and double quotes.

x <- r"(C:\Users\Me\Desktop\Data\hotel_bookings.csv)"
Source Link
Robby Cornelissen
  • 98.2k
  • 23
  • 153
  • 179

Since R 4.0.0, you can use raw character constants:

x <- r"(C:\Users\Me\Desktop\Data\hotel_bookings.csv)"
Morty Proxy This is a proxified and sanitized view of the page, visit original site.