Need to get Line number of Select-String mactch

60 Views Asked by At

realy need your help.

I have a $combobox that gives me all the FileName that contain "wrong source".

<$ComboBox.Items.AddRange(@(Get-ChildItem $filepath -Recurse -Include ".xml", ".txt"| Select-String "wrong source" -List | select-Object FileName))>

I need to get the line number on the file where that match occurred.

I have been looking and nothing works. Can you help?

1

There are 1 best solutions below

1
On

To search for the string "wrong source" in XML and TXT files and populate a ComboBox with the filenames and line numbers where matches are found, this should do:

• Populate the ComboBox with filename and line number directly within the ForEach-Object block:

# Search the given $filepath recursively for files with .xml or .txt extension
Get-ChildItem $filepath -Recurse -Include "*.xml", "*.txt" | 

# Use Select-String to find the first instance of "wrong source" in each file
Select-String "wrong source" -List | 

# For each matching line, execute the script block
ForEach-Object {
    # Add a new item to the ComboBox with the filename and line number of the match
    $comboBox.Items.Add("$($_.FileName) - Line: $($_.LineNumber)")
}
$comboBox.Items.Add("$($_.FileName) - Line: $($_.LineNumber)")
}