powered by
nbsp() generates a string of HTML non-breaking spaces ( ).
nbsp()
nbsp(n = 1L)
A character string containing n HTML non-breaking spaces ( ).
n
Number of non-breaking spaces. Defaults to 1.
1
# One non-breaking space nbsp() nbsp(1) # Several non-breaking spaces nbsp(n = 2) nbsp(n = 5) # When `n` is zero, an empty string is returned. nbsp(n = 0)
Run the code above in your browser using DataLab