Recommendation: The Split method behaves differently between PS5 and PS7 due to .NET changes. Use -split or -csplit with regex instead.
A closer alternative (that doesn't use regular expressions) would be using the ToCharArray method:
'Test1;Test2'.Split(',;|'.ToCharArray())
Test1
Test2
A closer alternative (that doesn't use regular expressions) would be using the
ToCharArraymethod: