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

Popular posts from this blog

Lists in Python -

android - can not access to progress bar in an other activity -

html - Not able to access next element of an array javascript -