R 语言学习教程,从入门到精通,R 字符串(10)

1、R 字符串

R 语言字符串可以使用一对单引号 ' ' 或一对双引号 " " 来表示。

单引号字符串中可以包含双引号。

单引号字符串中不可以包含单引号。

双引号字符串中可以包含单引号。

双引号字符串中不可以包含双引号。

以下示例演示来字符串的使用:

r 复制代码
a <- '使用单引号'
print(a)
b <- "使用双引号"
print(b)
c <- "双引号字符串中可以包含单引号(') "
print(c)
d <- '单引号字符串中可以包含双引号(") '
print(d)

执行以上代码输出结果为:

r 复制代码
[1] "使用单引号"
[1] "使用双引号"
[1] "双引号字符串中可以包含单引号(') "
[1] "单引号字符串中可以包含双引号(\") "

1.1、字符串操作

以下我们来看下 R 语言一些内置函数对字符串对操作。

1.2、paste() 函数

paste() 函数用于使用指定对分隔符来对字符串进行连接,默认对分隔符为空格。

语法格式:

r 复制代码
paste(..., sep = " ", collapse = NULL)

参数说明:

... : 字符串列表

sep : 分隔符,默认为空格

collapse : 两个或者更多字符串对象根据元素对应关系拼接到一起,在字符串进行连接后,再使用 collapse 指定对连接符进行连接

r 复制代码
a <- "Google"
b <- 'Nhooo'
c <- "Taobao"
print(paste(a,b,c))
print(paste(a,b,c, sep = "-"))
print(paste(letters[1:6],1:6, sep = "", collapse = "="))
paste(letters[1:6],1:6, collapse = ".")

执行以上代码输出结果为:

r 复制代码
[1] "Google Nhooo Taobao"
[1] "Google-Nhooo-Taobao"
[1] "a1=b2=c3=d4=e5=f6"
[1] "a 1.b 2.c 3.d 4.e 5.f 6"

1.3、format() 函数

format() 函数用于格式化字符串,format() 可作用于字符串或数字。

语法格式:

r 复制代码
format(x, digits, nsmall, scientific, width, justify = c("left", "right", "centre", "none"))

参数说明:

x : 输入对向量

digits : 显示的位数

nsmall : 小数点右边显示的最少位数

scientific : 设置科学计数法

width : 通过开头填充空白来显示最小的宽度

justify:设置位置,显示可以是左边、右边、中间等。

r 复制代码
# 显示 9 位,最后一位四舍五入
result <- format(23.123456789, digits = 9)
print(result)

# 使用科学计数法显示
result <- format(c(6, 13.14521), scientific = TRUE)
print(result)
# 小数点右边最小显示 5 位,没有的以 0 补充
result <- format(23.47, nsmall = 5)
print(result)
# 将数字转为字符串
result <- format(6)
print(result)
# 宽度为 6 位,不够的在开头添加空格
result <- format(13.7, width = 6)
print(result)
# 左对齐字符串
result <- format("Nhooo", width = 9, justify = "l")
print(result)
# 居中显示
result <- format("Nhooo", width = 10, justify = "c")
print(result)

执行以上代码输出结果为:

r 复制代码
[1] "23.1234568"
[1] "6.000000e+00" "1.314521e+01"
[1] "23.47000"
[1] "6"
[1] "  13.7"
[1] "Nhooo   "
[1] "  Nhooo  "

1.4、nchar() 函数

nchar() 函数用于计数字符串或数字列表的长度。

语法格式:

r 复制代码
nchar(x)

参数说明:

x : 向量或字符串

r 复制代码
result <- nchar("Google Nhooo Taobao")
print(result)

执行以上代码输出结果为:

r 复制代码
[1] 20

1.5、toupper() & tolower() 函数

toupper() & tolower() 函数用于将字符串的字母转化为大写或者小写。

语法格式:

r 复制代码
toupper(x)
tolower(x)

参数说明:

x : 向量或字符串

#转大写

r 复制代码
result <- toupper("Nhooo")
print(result)
# 转小写
result <- tolower("Nhooo")
print(result)

执行以上代码输出结果为:

r 复制代码
[1] "NHOOO"
[1] "nhooo"

1.6、substring() 函数

substring() 函数用于截取字符串。

语法格式:

r 复制代码
substring(x,first,last)

参数说明:

x : 向量或字符串

first : 开始截取的位置

last: 结束截取的位置

r 复制代码
# 从第 2 位截取到第 5 位
result <- substring("Nhooo", 2, 5)
print(result)

执行以上代码输出结果为:

r 复制代码
[1] "hooo"
相关推荐
花酒锄作田9 小时前
Pydantic校验配置文件
python
hboot9 小时前
AI工程师第四课 - 深度学习入门
pytorch·python·神经网络
ZhengEnCi19 小时前
P2M-Matplotlib折线图完全指南-从数据可视化到趋势分析的Python绘图利器
python·matlab·数据可视化
ZhengEnCi21 小时前
P2L-Matplotlib饼图完全指南-从数据可视化到图表定制的Python绘图利器
python·matlab
曲幽21 小时前
你的REST接口还在“过度投喂”数据吗?——FastAPI + GraphQL实战避坑指南
python·fastapi·web·graphql·route·cors·rest·strawberry
用户8358086187911 天前
基于 Self-RAG 与列表级重排序的进阶 RAG 系统设计与实现
python
Warson_L2 天前
Python `Annotated` 与 LangGraph Reducer 学习笔记
python
韩师傅2 天前
海天线算法的前世今生
python·计算机视觉
大大大大晴天2 天前
Hudi Metadata Table 与 Hive Sync (HMS)怎么选?
大数据
韩师傅2 天前
当你的甲方设备过烂,要如何快速出效果?
python·计算机视觉