如何查找不同公司的发票号码,发票号码、单位成本和总成本的顺序可能不同?
以下是我需要获取的XYZ公司的具体示例
1234545
This is invoice from company XYZ - 1234545 product name , product number 444456, information invoice unit cost $12.0 and invoice total $1343.00
另一家公司可能有以下发票
This is invoice from company ABC - 1234545 product name and information invoice total cost $6777 and invoice unit cost $654
我尝试了这个正则表达式
(?<=invoice).+\d+
但是没有成功。
XYZ.*?(\d+) • 点。匹配除换行符之外的任何字符。
Apple Numbers RegEx 支持 \K 这是 Perl 格式吗? PCRE?