How can I store the position of the first numeric character of a string
?
Example:
$NomeEstacao = "Atendimento05" # posição 11 (carácter 0)
$NomeEstacao = "Direcao46" # posição 7 (carácter 4)
I tried to use $a.IndexOf("\d").
to find the position but to no avail.