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.
This commit is contained in:
Steve Dogiakos 2025-03-19 11:14:14 -06:00 committed by GitHub
parent 779a37cfa8
commit 50606414e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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