I need a quick help on below
Problem Statement: I have a String "b161c43" and would need to split this into "b161" and "c43" in PowerShell.
I tried following commands but its not giving me the complete text
   'b161c43' -split '\D'  
    => Output as : 161 43   
    => But I need: b161 c43
Test Data: 
b69c123 
a1c1 
s4202z22
