When I use (in R)
print("<br><br>")
Output i get
[1] <br><br>
instead, you can only get
<br><br>
I want to insert above into an HTML document.
As Backlin mentioned, catwill hide [1].
cat
[1]
Another useful feature that may lie (at least if you come from the background of the C family),
printf <- function (...) { invisible(cat(sprintf(...))) }
See more details ?sprintf.
?sprintf
Another solution is to use message(). Example (interpreter R):
message()
> message('<br><br>') <br><br>
Source: https://habr.com/ru/post/1589204/More articles:Refactoring for a loop with each iteration sets a different property - javaMeteor JS installs on Ubuntu 14.04.x - node.jscomparison of scalars in dplyr filter - rAndroid - Tamagotchi, game in the background - androidhttps://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1589203/does-recyclerview-have-any-benefits-other-than-forcing-developers-to-use-the-viewholder-pattern&usg=ALkJrhggByg-gCQ_vmRAxvcmrEey4PwfmAHow to split dict value into two parts - javaQTableWidgetItem background color change - pythonThe input format for the Kruskal-Wallis test in Python - pythonIs it possible to redirect the user to launch the scanner application? - javascriptto create vectors for the pirate H-test Kruskal-Wallis - pythonAll Articles