You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previous commit only resolves the issue if running on Windows, commit introduces new error on linux/os x: Error in tolower(txt) : invalid multibyte string 1
I have problem in following code:
get.msg <- function(path)
{
con <- file(path, open = "rt", encoding = "latin1")
text <- readLines(con)
The message always begins after the first full line break
msg <- text[seq(which(text == "")[1] + 1, length(text), 1)]
close(con)
return(paste(msg, collapse = "\n"))
}
How can i do , please some body help me!!
The text was updated successfully, but these errors were encountered: