欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

R语言字符串知识点总结及实例分析

程序员文章站 2022-06-18 08:10:20
在r语言中的单引号或双引号对中写入的任何值都被视为字符串。 r语言存储的每个字符串都在双引号内,即使是使用单引号创建的依旧如此。在字符串构造中应用的规则 在字符串的开头和结尾的引号应该是两个双引号或...

在r语言中的单引号或双引号对中写入的任何值都被视为字符串。 r语言存储的每个字符串都在双引号内,即使是使用单引号创建的依旧如此。

在字符串构造中应用的规则

  • 在字符串的开头和结尾的引号应该是两个双引号或两个单引号。它们不能被混合。
  • 双引号可以插入到以单引号开头和结尾的字符串中。
  • 单引号可以插入以双引号开头和结尾的字符串。
  • 双引号不能插入以双引号开头和结尾的字符串。
  • 单引号不能插入以单引号开头和结尾的字符串。

有效字符串的示例

以下示例阐明了在 r 语言中创建字符串的规则。

a <- 'start and end with single quote'
print(a)

b <- "start and end with double quotes"
print(b)

c <- "single quote ' in between double quotes"
print(c)

d <- 'double quotes " in between single quote'
print(d)

当运行上面的代码,我们得到以下输出

[1] "start and end with single quote"
[1] "start and end with double quotes"
[1] "single quote ' in between double quote"
[1] "double quote " in between single quote"

无效字符串的示例

e <- 'mixed quotes" 
print(e)

f <- 'single quote ' inside single quote'
print(f)

g <- "double quotes " inside double quotes"
print(g)

当我们运行脚本失败给下面的结果。

...: unexpected incomplete_string

.... unexpected symbol 
1: f <- 'single quote ' inside

unexpected symbol
1: g <- "double quotes " inside

字符串操作

连接字符串 - paste() 函数

r语言中的许多字符串使用 paste() 函数组合。 它可以采取任何数量的参数组合在一起。

语法

对于粘贴功能的基本语法是

paste(..., sep = " ", collapse = null)

以下是所使用的参数的说明 -

  • ... 表示要组合的任意数量的自变量。
  • sep 表示参数之间的任何分隔符。它是可选的。
  • collapse 用于消除两个字符串之间的空格。 但不是一个字符串的两个字内的空间。

a <- "hello"
b <- 'how'
c <- "are you? "

print(paste(a,b,c))

print(paste(a,b,c, sep = "-"))

print(paste(a,b,c, sep = "", collapse = ""))

当我们执行上面的代码,它产生以下结果

[1] "hello how are you? "
[1] "hello-how-are you? "
[1] "hellohoware you? "

格式化数字和字符串 - format() 函数

可以使用 format() 函数将数字和字符串格式化为特定样式。

语法

格式化函数的基本语法是

format(x, digits, nsmall, scientific, width, justify = c("left", "right", "centre", "none")) 

以下是所使用的参数的描述 -

  • x 是向量输入。
  • digits 是显示的总位数。
  • nsmall 是小数点右边的最小位数。
  • 科学设置为 true 以显示科学记数法。
  • width 指示通过在开始处填充空白来显示的最小宽度。
  • justify 是字符串向左,右或中心的显示。

# total number of digits displayed. last digit rounded off.
result <- format(23.123456789, digits = 9)
print(result)

# display numbers in scientific notation.
result <- format(c(6, 13.14521), scientific = true)
print(result)

# the minimum number of digits to the right of the decimal point.
result <- format(23.47, nsmall = 5)
print(result)

# format treats everything as a string.
result <- format(6)
print(result)

# numbers are padded with blank in the beginning for width.
result <- format(13.7, width = 6)
print(result)

# left justify strings.
result <- format("hello", width = 8, justify = "l")
print(result)

# justfy string with center.
result <- format("hello", width = 8, justify = "c")
print(result)

当我们执行上面的代码,它产生以下结果 -

[1] "23.1234568"
[1] "6.000000e+00" "1.314521e+01"
[1] "23.47000"
[1] "6"
[1] " 13.7"
[1] "hello  "
[1] " hello "

计算字符串中的字符数 - nchar() 函数

此函数计算字符串中包含空格的字符数。

语法

nchar() 函数的基本语法是

nchar(x)

以下是所使用的参数的描述 -

x 是向量输入。

result <- nchar("count the number of characters")
print(result)

当我们执行上面的代码,它产生以下结果

[1] 30

更改case - toupper()和tolower()函数

这些函数改变字符串的字符的大小写。

语法

toupper()和tolower()函数的基本语法是

toupper(x)
tolower(x)

以下是所使用的参数的描述 -

x是向量输入。

# changing to upper case.
result <- toupper("changing to upper")
print(result)

# changing to lower case.
result <- tolower("changing to lower")
print(result)

当我们执行上面的代码,它产生以下结果

提取

[1] "changing to upper"
[1] "changing to lower"

字符串的一部分 - substring()函数

此函数提取字符串的部分。

语法

substring() 函数的基本语法是

substring(x,first,last)

以下是所使用的参数的描述 -

  • x 是字符向量输入。
  • 首先是要提取的第一个字符的位置。
  • last 是要提取的最后一个字符的位置。

# extract characters from 5th to 7th position.
result <- substring("extract", 5, 7)
print(result)

当我们执行上面的代码,它产生以下结果

[1] "act"

到此这篇关于r语言字符串知识点总结及实例分析的文章就介绍到这了,更多相关r语言字符串内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

相关标签: R语言 字符串