R语言【taxlist】——clean_strings():清理字符串

Package taxlist version 0.2.4


Description

多个前导的和后随的空格以及错误的编码可能会在处理分类学名称的信息中导致严重的问题。clean_strings() 方法可以清除这些错误。


Usage

clean_strings(x, ...)

## S4 method for signature 'character'
clean_strings(x, from = "utf8", to = "utf8", ...)

## S4 method for signature 'factor'
clean_strings(x, from = "utf8", to = "utf8", ...)

## S4 method for signature 'data.frame'
clean_strings(x, from = "utf8", to = "utf8", ...)

Arguments

参数【x】:用来清理的字符串对象。

参数【...】:在方法之间传递的进一步参数(尚未使用)。

参数【from,to】:传递给 iconv() 方法的参数。


Detail

该函数可以自动删除字符串(character 方法)级别(factor 方法)或单列(data.frame 方法)中的前导、后随和多余的空格。


Value

返回与参数【x】相同类型的对象。


Example

## Leading, trailing and multiple spaces
clean_strings(" Cyperus    papyrus L.     ")
[1] "Cyperus papyrus L."

你可能感兴趣的:(taxlist,r语言,开发语言)