I'm looking for a RegEx expression that lets me find all instances that match a pattern.
PowerShell:
> if ("123 234 345 567" -match ".*(\d{3}).*") { $Matches | fl}
Name : 1
Value : 567
Name : 0
Value : 123 234 345 567
I'd like to also get the other three-digit values as individual matches.
-S