$String = 'SString1T<String2>';
$Find = [Regex]::Matches($String, "(?<=S).+?(?=T)");
for($i = 0; $i -lt $Find.Count; $i++) {
$Find[$i].Value;
};
$Find = [Regex]::Matches($String, "(?<=\<).+?(?=\>)");
for($i = 0; $i -lt $Find.Count; $i++) {
$Find[$i].Value;
};
沒有留言:
張貼留言