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

magento2 - Magento 2 admin grid add filter to collection -

Android volley - avoid multiple requests of the same kind to the server? -

Combining PHP Registration and Login into one class with multiple functions in one PHP file -