# R语言判断字符串是否包含某字符,需要导入stringr包,两个函数都是可以的 stringr::str_detect(table$cust_id,'123') grepl('123',table$cust_id)