I have multiple strings that contain names with [ ] inside of them. For example:
"Tim Drake [Van Dyke]"
"Alex Scott [Hammer Field]"
I need to pull the "Van Dyke" out. So far the only thing I have successfully done is to remove the [] characters.
$Test = "Time Drake [Van Dyke]"
$Test -replace "[\[\]]",''
Any suggestions so far?