我正在尝试解析字符串以在字符串中找到可变长度的数字。
这是我正在测试的一些字符串...
this_is_a_test_string25365with_a_number
this_is_another_test243with_a_number
testing_again3with_a_number
$Regex = "\b.*([\d]{1,}).*\b"
foreach($result in $testdata) {
if( $result -match $Regex ) {
$Matches[1]
}
}
当我更改 \d 后面的量词时,它只会给我那个位数