I read HTML text with the following command:
text <- read_html("linkoftext")
The result is:
"Veri analizi, farklı iş, bilim ve sosyal bilim alanlarında çeşitli isimler altında çeşitli teknikleri kapsayan çok yönlü ve farklı yaklaşımlara sahiptir. Veri entegrasyonu veri analizinin öncüsüdür."
This text includes letters like "ş ç ü ö ı". I need to substitute them to "s c u o i". I wrote the following code:
string <- "ş ç ı ğ ü ö f s x q"
chartr("ş ç ı ğ ü ö", "s c i g u o", string)
How can apply the code above to my text, since I have still these letters as the output of chartr
?