如何在 r 中使用 str_trim(附示例)


R 中stringr包的str_trim()函数可用于删除字符串中的空格。

该函数使用以下语法:

str_trim(string, side = c(“两者”, “左”, “右”))

金子:

  • 字符串:字符向量
  • 模式:删除空格的一侧

下面的例子展示了如何在实际中使用这个功能

示例1:在左侧剪切空格

以下代码显示如何使用str_trim()函数删除字符串左侧的空格:

 library (stringr)

#create string
my_string <- “Hey there everyone.”

#view string
my_string

[1] “Hey there everyone.”

#create new string with white space removed from left
new_string <- str_trim(my_string, side=" left ")

#view new string
new_string

[1] “Hey there everyone.”

请注意,字符串左侧的所有空格均已被修剪。

示例 2:修剪右侧的空格

以下代码显示如何使用str_trim()函数删除字符串右侧的空格:

 library (stringr)

#create string
my_string <- “Hey there everyone.”

#view string
my_string

[1] “Hey there everyone.”

#create new string with white space removed from right
new_string <- str_trim(my_string, side=" right ")

#view new string
new_string

[1] “Hey there everyone.”

请注意,字符串右侧的所有空格均已被修剪。

示例 3:两侧切割空间

以下代码显示如何使用str_trim()函数删除字符串两侧的空格:

 library (stringr)

#create string
my_string <- “Hey there everyone.”

#view string
my_string

[1] “Hey there everyone.”

#create new string with white space removed from both sides
new_string <- str_trim(my_string, side=" both ")

#view new string
new_string

[1] “Hey there everyone.”

请注意,字符串两侧的所有空格均已被修剪。

其他资源

以下教程解释了如何在 R 中执行其他常见任务:

如何在 R 中使用 str_replace
如何在 R 中使用 str_split
如何在 R 中使用 str_detect
如何在 R 中使用 str_count

添加评论

您的电子邮箱地址不会被公开。 必填项已用*标注