我有一个像这样的字符串:
st = 0,090,000,170,16-0,030,19 0,330,19
如何在其中添加空格(在每个逗号后两个位置)以获取如下字符串:
st = 0,09 0,00 0,17 0,16 -0,03 0,19 0,33 0,19
答案 0 :(得分:3)
使用正则表达式。如下所示替换
var oldString = "0,090,000,170,16 - 0,030,19 0,330,19";
var newString = Regex.Replace(oldString, ",[0-9]{2}", (match) => { return match.Value + " "; });
答案 1 :(得分:0)
new WebDriverWait(driver, 10).until(ExpectedConditions.or(
ExpectedConditions.visibilityOfElementLocated(By.xpath("//span[@id='id1']")),
ExpectedConditions.visibilityOfElementLocated(By.xpath("//span[@id='id2']"))
));