Computer Science, asked by naikgowtham007, 6 months ago

Leading white space at the beginning of each statement, which is used to determine the group of statement is called​

Answers

Answered by varunragi916
0

Answer:

Another option is to use the stri_trim function from the stringi package which defaults to removing leading and trailing whitespace: > x <- c(" leading space","trailing space ") > stri_trim(x) [1] "leading space" "trailing space" For only removing leading whitespace, use stri_trim_left.

Explanation:

Similar questions