3

I'm trying to read values from a text file into a hashtable, I want to be able to be able to tell when I encounter a value that has the format "['somestring']"... So when I encounter a value that has brackets around it I want to store the string into a specific variable and run a function with that string.

I was thinking that regex was the way to go for this but I am unsure what a possible regex value would look like. Any help would be appreciated thank you!

2 Answers 2

9
$r = [regex] "\[([^\[]*)\]"
$match = $r.match("[somestring]")
$text = $match.groups[1].value
Sign up to request clarification or add additional context in comments.

Comments

3
if("['somestring']" -match "\['([^\]]+)'\]")
{
    $matches[1]
}

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.