我希望可以将&& element.prop('required')
传递给tidyr的regex
并将extract
设置为true。但这显然不起作用:
ignore_case
这将导致带有一列tidyr::extract(
tibble("Value"),
col = 1,
into = c("result"),
regex = regex("(value)", ignore_case = TRUE)
)
和一行具有值result
的小标题。但是不是,单元格是Value
。
使用大写字母,相同的代码有效:
NA
直接将tidyr::extract(
tibble("Value"),
col = 1,
into = c("result"),
regex = regex("(Value)", ignore_case = TRUE)
)
或ignore_case = TRUE
作为ignore.case = TRUE
的参数不能解决问题。
答案 0 :(得分:0)
Thx wiktor,确实有效:
tidyr::extract(
tibble("Value"),
col = 1,
into = c("result"),
regex = "(?i)(value)"
)