• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

【R语言】常用的字符串处理函数 【待更新】

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

1.

 

#字符串连接:
paste() #paste(..., sep = " ", collapse = NULL)

#字符串分割:
strsplit() #strsplit(x, split, extended = TRUE, fixed = FALSE, perl = FALSE)

例如.

strsplit('123abcdefgabcdef','ab')
[[1]]
[1"123"   "cdefg" "cdef" 


#计算字符串的字符数:
nchar()

#字符串截取:
substr(xstartstop)
substring(textfirstlast = 1000000)
substr(xstartstop) <- value
substring(textfirstlast = 1000000) <- value

#字符串替换及大小写转换:
chartr(oldnewx)
tolower(x)
toupper(x)
casefold(xupper = FALSE

 

#匹配相关的函数:

字符完全匹配
grep()
字符不完全匹配
agrep()
字符替换
gsub()
#以上这些函数均可以通过perl=TRUE来使用正则表达式。
     grep(patternxignore.case = FALSEextended = TRUE,
          perl = FALSEvalue = FALSEfixed = FALSEuseBytes = FALSE)

     sub(patternreplacementx,
         ignore.case = FALSEextended = TRUEperl = FALSE,
         fixed = FALSEuseBytes = FALSE)

     gsub(patternreplacementx,
          ignore.case = FALSEextended = TRUEperl = FALSE,
          fixed = FALSEuseBytes = FALSE)

     regexpr(patterntextignore.case = FALSEextended = TRUE,
             perl = FALSEfixed = FALSEuseBytes = FALSE)

     gregexpr(patterntextignore.case = FALSEextended = TRUE,
              perl = FALSEfixed = FALSEuseBytes = FALSE)
See Also:

     regular expression (aka 'regexp'for the details of the pattern
     specification.

     'glob2rx' to turn wildcard matches into regular expressions.

     'agrep' for approximate matching.

     'tolower''toupper' and 'chartr' for character translations.
     'charmatch''pmatch''match'. 'apropos' uses regexps and has
     nice examples.


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
R语言---- 数据的基本运算发布时间:2022-07-18
下一篇:
R语言:读入txt文件中文文本出现乱码解决方案发布时间:2022-07-18
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap