gpt4 book ai didi

regex - 根据大写字母拆分字符串

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

如何根据字符串包含的每个大写字母拆分字符串。无法从互联网上找到任何帮助。

a<-"MiXeD"
b<-"ServiceEventId"

我想得到

a<-c("Mi", "Xe", "D")
b<-c("Service", "Event", "Id")

最佳答案

这是一个选项,它使用一个后向断言和一个前瞻断言来查找(然后拆分)紧跟大写字母的字符间空格。了解为什么需要先行断言和后行断言(即不仅仅是先行断言)see this question and its answers .

f <- function(x) {
strsplit(x, "(?<=.)(?=[[:upper:]])", perl=TRUE)
}

f(a)
# [[1]]
# [1] "Mi" "Xe" "D"

f(b)
# [[1]]
# [1] "Service" "Event" "Id"

关于regex - 根据大写字母拆分字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34779435/

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