PowerShell use regular expression to split a string

Question:

This is my code:

What I want is an array with three elements 1, 2, 3, however, what I got it is an array with five elements.

How to get what I want?

Update

Add the actual split result instead of the length.

Update

Thanks @Matt’s answer and it points me to the right direction. From help about_split the doc states that:

By default, the delimiter is omitted from the results. To preserve all
or part of the delimiter, enclose in parentheses the part that you
want to preserve.

Below are some of my testing.

Answer:

In PowerShell when you use a -split function if you have part of the match in brackets () you are asking for that match to be returned as well. I am sure that the same is true with the static method of [regex] as well. Consider the output from the two following commands (which are similar to yours) and you will see

In the first example you see that the comma and whitespace have been returned as elements. What I am explaining is documented in About_Split

By default, the delimiter is omitted from the results. To preserve all
or
part of the delimiter, enclose in parentheses the part that you want to
preserve.

In this particular case

As pointed out in the comments there are 2 more ideal regex strings that would handle this particular case better

(?:,|\s)+ or [,\s]+

Former using a non capturing group and latter being a character class.

Source:

PowerShell use regular expression to split a string by licensed under CC BY-SA | With most appropriate answer!

Leave a Reply