我想试着正则化这个文本,只得到“Second Baptist School,”作为输出,通过使用Customer:作为它要识别的开始,我怎么才能让它识别开始,并得到所有在大块空白之间的文本呢?
Customer:
Customer: Second Baptist School Date of Sale: 9/26/2022
现在我使用的是Customer:\s*([^ -.]+),但它只得到“Second”作为输出。
Customer:\s*([^ -.]+)
s8vozzvw1#
您可以使用以下命令查找2个或更多白色:
Customer:\s*(.*?)\s{2,}
这应该与上面的例子一致。{2,}表示2或更多。https://regex101.com/r/1HapOO/1
{2,}
1条答案
按热度按时间s8vozzvw1#
您可以使用以下命令查找2个或更多白色:
这应该与上面的例子一致。
{2,}
表示2或更多。https://regex101.com/r/1HapOO/1