当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R语言 trimws()用法及代码示例


R 语言中的 trimws() 函数用于修剪前导空格。它通过删除具有相同值的最外面的行和列来缩小对象。

用法: trimws(x)

参数:
x:对象或字符串

示例 1:删除前导和尾随空格


# R program to illustrate
# Removing of leading whitespaces 
   
# Create example character string
my_text <- "     .  This is a trim       function      example "  
  
# Apply trimws function in R
print(trimws(my_text))
  

输出:



".  This is a trim       function      example"

在上面的代码中,我们创建了一个字符串并在其中包含空格,因此我们使用了trimws()删除空格的函数。

范例2:


# R program to illustrate
# Removing of leading whitespaces 
   
# Create example character string
my_text <- "      Geeks_For_Geeks     "  
  
# Apply trimws function in R
print(trimws(my_text))

输出:

"Geeks_For_Geeks     "

相关用法


注:本文由纯净天空筛选整理自akhilsharma870大神的英文原创作品 Remove Leading whitespaces from a String in R Language – trimws() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。