我的功能文件中有一个 Given 语句
Given I have $100.25 in my bank account
以下步骤定义不取小数部分
@Given("I have \\$\\d+(\\.\\d+) in my bank account")
public void given_money_in_bank_Account(double money){
//This returns money as .25
}
我确定我的正则表达式在这里是正确的。如何获得 100.25 作为参数传递?