Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Misc Newsgroups > PowerShell

Vista - find all href attributes

Reply
 
Old 07-23-2008   #1 (permalink)
rshillington


 
 

find all href attributes

I want to search all .as?x files for href attributes and produce a
sorted distinct list of the attribute values. I'm pretty sure this is
easily doable with PowerShell. Any pointers would be greatly
appreciated.

My System SpecsSystem Spec
Old 07-23-2008   #2 (permalink)
Shay Levy [MVP]


 
 

Re: find all href attributes

Hi rshillington,

Try this, the regex pattern may vary:


dir *.as?x | foreach{
$regex = '<a\s+[^>]+?href="(?<href>[^"]+)"'
$content = cat $_
[regex]::Matches($content,$regex) | foreach { $_.Groups["href"].Value }
}




---
Shay Levy
Windows PowerShell MVP
blog: http://blogs.microsoft.co.il/blogs/ScriptFanatic



r> I want to search all .as?x files for href attributes and produce a
r> sorted distinct list of the attribute values. I'm pretty sure this
r> is easily doable with PowerShell. Any pointers would be greatly
r> appreciated.
r>


My System SpecsSystem Spec
Reply

Thread Tools


Similar Threads
Thread Forum
batch replace href value VB Script
batch replace href value VB Script
Fetch special characters like "Ñ" and absolute URL from href attribute of anchors VB Script
file attributes PowerShell
href Links & Junk Mail Vista mail


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46