我正在字符串中查找单词 customerID 编号。客户 ID 将采用这种格式customerID{id}
,因此请查看我将拥有的一些不同的字符串
myVar = "id: 1928763783.Customer Email: test@test.com.Customer Name:John Smith.CustomerID #123456.";
myVar = "id: 192783.Customer Email: test1@test.com.Customer Name:Rose Vil.CustomerID #193474.";
myVar = "id: 84374398.Customer Email: test2@test.com.Customer Name:James Yuem.";
理想情况下,我希望能够检查 CustomerID 是否存在。如果它确实存在,那么我想看看它是什么。我知道我们可以使用正则表达式,但不确定看起来如何谢谢