From 50606414e8aa270677a0ee50d2a1ecac36fc9a38 Mon Sep 17 00:00:00 2001 From: Steve Dogiakos Date: Wed, 19 Mar 2025 11:14:14 -0600 Subject: [PATCH] Finally working script! Match 'Bill to' anywhere in the text and then capture the next non-empty line to use for renaming. It's not perfect, but it does work on all the files this time. --- RenameInvoice.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RenameInvoice.ps1 b/RenameInvoice.ps1 index df42311..cf4e405 100644 --- a/RenameInvoice.ps1 +++ b/RenameInvoice.ps1 @@ -14,8 +14,8 @@ foreach ($pdfFile in $pdfFiles) { # Read extracted content as a single string $content = Get-Content $tempTxt -Raw - # More robust method: find "Bill to" and capture next meaningful line - if ($content -match "Bill to\s*(?:\r?\n)+\s*(.+)") { + # Robust regex method: finds "Bill to" and captures the next meaningful line even if Bill to is not alone on line + if ($content -match "Bill to.*?(?:\r?\n|\r|\n)\s*(.+)") { $billToName = $matches[1].Trim() # Clean name from invalid filename characters