gpt4 book ai didi

r - 如何在R中找到字符串的长度

转载 作者:行者123 更新时间:2023-12-01 13:10:09 30 4
gpt4 key购买 nike

如何找到字符串的长度(字符串中的字符数)而不在 R 中拆分它?我知道如何找到列表的长度而不是字符串的长度。

那么 Unicode 字符串呢?如何在 Unicode 字符串中找到长度(以字节为单位)和字符数( rune 、符号)?

相关问题:

  • How to find the "real" number of characters in a Unicode string in R
  • 最佳答案

    ?nchar .例如:

    > nchar("foo")
    [1] 3
    > set.seed(10)
    > strn <- paste(sample(LETTERS, 10), collapse = "")
    > strn
    [1] "NHKPBEFTLY"
    > nchar(strn)
    [1] 10

    关于r - 如何在R中找到字符串的长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11134812/

    30 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com