📜  strtrim in - R 编程语言(1)

📅  最后修改于: 2023-12-03 15:20:21.967000             🧑  作者: Mango

R语言中的strtrim函数介绍

strtrim函数是R语言中用于去除字符串首尾空格的函数,其基本语法如下:

strtrim(string, side = c("both", "left", "right"))
  • string:待处理的字符串
  • side:默认为"both",去除字符串首尾空格;"left",去除字符串左侧空格;"right",去除字符串右侧的空格。
举例说明

假设有一个字符串" hello world ",我们可以使用以下代码去除其首尾空格:

string <- "  hello world  "
strtrim(string)

执行后的结果为:

[1] "hello world"

如果我们只去除其左侧空格:

strtrim(string, "left")

执行后的结果为:

[1] "hello world  "

以及只去除右侧空格:

strtrim(string, "right")

执行后的结果为:

[1] "  hello world"
注意事项

如果字符串中间有空格,strtrim函数并不会将其去除,仅限于去除首尾空格。

总结

strtrim函数在R语言中用于去除字符串首尾空格,具有简单易用、灵活多样的特点。程序员在R语言中处理字符串时,不妨多加使用此函数,可以方便快捷地完成相关工作。