powershell - search for images in a .xml file and extract and create them (dummys) -
can me out please?
sls '\d*\s*.jpg' .\test.xml -ca).matches | select -exp value
as mathias pointed out in comments, select-string
not available prior powershell v3. can replaced where-object
filter:
get-content 'c:\path\to\file.txt' | where-object { $_ -match 'expression' }
Comments
Post a Comment