查询的引号

时间:2016-09-27 09:37:18

标签: r

如果我使用它:

 public int cursorPos
    {
        get 
        { return position; 
        }
        set
        {
            postion = value;  // if you call for example "cursorPos = 12;" the value is "12". this is how properties work...
            RaisePropertyChanged(nameof(cursorPos));
        }
    }

它完美无缺。如果我尝试使用包含刺痛的变量:

web<-remDr$findElement(using = 'xpath', "//*/li[@class='ode acs er cart']")

它没有用。引号有什么问题吗?

1 个答案:

答案 0 :(得分:0)

myvar是一个变量,而不是一个字符串。相应地使用它会更好:

myvar <- "/'ode acs er cart/'"
x <- paste0("//*/li[@class=", mylar, "]")
web<-remDr$findElement(using = 'xpath', x)

您不能将x用作变量:

myvar <- "/'ode acs er cart/'"
web<-remDr$findElement(using = 'xpath', paste0("//*/li[@class=", myvar, "]"))