For this I want to get the string immediately after D:
. Any thought?
library(stringr)
str_extract("D:Directory AFile.txt", "Directory A")
I get Error: 'D' is an unrecognized escape in character string (<input>:1:17)
For this I want to get the string immediately after D:
. Any thought?
library(stringr)
str_extract("D:Directory AFile.txt", "Directory A")
I get Error: 'D' is an unrecognized escape in character string (<input>:1:17)