可以有像 sshexclude1 sshexclude2 这样的字符串,我只想捕获“1”和“2”,即 sshexclude 后面的数字并将其保存为 ssh*,我如何提取该值。这是我到目前为止尝试过的..(我想将连接的值保存在字符串类型的 bean 中)
<bean id="sshExcludeValue" class="java.util.regex.Pattern" factory-method="compile">
<constructor-arg value="^sshexclude\d$" />
</bean>