如何在 R 中检查一个字符串是否是另一个字符串的子集?
要检查一个字符串是否是另一个字符串的子集,我们可以使用 grepl 函数。
示例
> Company <- "TutorialsPoint" > Job <- "Tutor" > grepl(Job, Company, fixed = TRUE) [1] TRUE
这里我们获得 TRUE,因为 Tutor 是 TutorialsPoint 的子集。
> grepl(Company, Job, fixed = TRUE) [1] FALSE
这里我们得到 FALSE,因为 TutorialsPoint 不是 Tutor 的子集。
广告