Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6375357
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T01:36:17+00:00 2026-05-25T01:36:17+00:00

I saw this Powershell statement in a recent Hanselminutes post – cat test.txt |

  • 0

I saw this Powershell statement in a recent Hanselminutes post –

cat test.txt | foreach-object {$null = $_ -match '<FancyPants>(?<x>.*)<.FancyPants>'; $matches.x} | sort | get-unique

I’m trying to learn Powershell at the moment and I think that I understand most of what is going on –

  • The statement loops through each line of ‘test.txt’ and runs a regex against the current line
  • All the results are collated and then sorted and duplicates removed

My understanding seems to fall down on this part of the statement –

$null = $_ -match '<FancyPants>(?<x>.*)<.FancyPants>'; $matches.x
  • What is the ‘$null = ‘ part of the code doing, I suspect this is
    to handle a scenario when no match is returned but I’m not sure how
    it works?
  • Is ‘$matches.x‘ returning the matches found?
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T01:36:18+00:00Added an answer on May 25, 2026 at 1:36 am

    Yes, the -match operator results in True or False; assigning to $null suppresses the output.

    The (?<>) regex syntax creates a capture group. In this case it’s creating a capture group called x for any characters between <FancyPants> and <.FancyPants>. $matches contains the match info for the last match. Capture groups can be referenced by $matches.CaptureGroupName.

    Here is an example you can use to see what is in the $Matches variable.

    '123 Main','456 Broadway'| foreach{$_; $null = $_ -match '(?<MyMatch>\d+)'; ($Matches| ft *)}
    

    In this example you would use $Matches.MyMatch to reference the match.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I saw this reply from Jon on Initialize generic object with unknown type :
I saw this post but mine is slightly different: Rails ActionMailer with multiple SMTP
Saw this post at CodeProject for FCKEditor. Can someone explain what about the new
I saw this list of major version numbers for Java in another post: Java
I saw this post which was helpful in copying a .db file I include
I saw this post on SO already but it still begs the question, at
I saw this post here , he explains well howto show a highlighted result,
I saw this code in another SO post: jQuery UI Autocomplete with ASP MVC
Saw this piece of code in a Ruby on Rails book. This first one
I saw this in an answer to another question , in reference to shortcomings

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.