我正在使用正则表达式invoicenumber
搜索'Invoicenumber: (//d+)'
。
但不幸的是,该行还包含雇主名称,其中一些名称也包含数字,例如“xs4all
”,因此结果是名称的invoicenumber
+数字“4”。我怎样才能防止这种情况发生?
示例1
xs4all Invoicenumber: 123456 gives 1234564 (wrong)
示例2
anothername Invoicenumber: 112233 gives 112233 (good)