- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的问题的核心是使用“粘贴”将变量放入正则表达式中,并使用转义字符作为引号。这是其他 stackoverflow 问题的答案——但它似乎不起作用。我认为这个问题与那些问题的独特之处在于它结合了两个元素——使用粘贴将变量放入正则表达式中,并使用转义字符作为引号。我也尝试过使用“猫”,这是另一个常见的答案,但没有成功。
我正在尝试做的是使通过包含数千个名称的列表按名称进行过滤变得更加容易。 (我正在从可视化软件 (Spotfire) 转向 R,但我错过了列表框过滤器。)如果有任何关于如何执行此任务的建议,我将非常高兴。
而且,是的,我是 R 编程(和一般编程)的新手。Stackoverflow 一直是压倒性的最佳资源。你们一定是一群天才,
谢谢--
# mtcars example for filtering and finding names for the stack overflow question
data(mtcars)
# make the data match my dataframe, where I don't have row names but have a column with the name
mtcars$carname <- NA #declare the variable
mtcars$carname <- rownames(mtcars) #assign the names to a column
findcar <- function() {
while(TRUE) {
print("Type the car's name:")
apxname <- readline() #approx name
#type in Merc for this example
carlst <- mtcars$carname[(grepl("(apxname)",mtcars$carname, ignore.case = TRUE))] #list of cars that matches the approximate name
# if I type . . . (grepl("(Merc)", mtcars$carname, . . . )) it works great
#So per other stackoverflow responses, I've tried using "paste" or "paste0" without success
#I can't get this to work
#carlst <- mtcars$carname[(grepl(paste0('\"(',apxname, ')\"', sep=""),mtcars$carname, ignore.case = TRUE))]
print("Here's the list of similar customers:")
print(carlst)
print("Type the number of your car:")
carnum <- readline() #car number
therightone <- carlst[as.numeric(carnum)]
paste("You selected",therightone,"Is this the car (Y/N)?", sep=" ")
carconf <- readline() #car confirmation
if(carconf == "Y") break)
}
return(therightone)
}
最佳答案
要解决特定问题,请将 apxname
作为变量而不是字符串引用。清理了一点,包括上面 Mathias 提到的拼写错误,并将汽车确认提示包装在 print
中:
findcar <- function() {
while(TRUE) {
print("Type the car's name:")
apxname <- readline() # approx name
# list of cars that matches the approximate name
carlst <- rownames(mtcars)[grepl(apxname, rownames(mtcars), ignore.case = TRUE)]
print("Here's the list of similar customers:")
print(carlst)
print("Type the number of your car:")
carnum <- readline() # car number
therightone <- carlst[as.numeric(carnum)]
print(paste("You selected",therightone,"Is this the car (Y/N)?", sep=" "))
carconf <- readline() # car confirmation
if(carconf == "Y") break
}
return(therightone)
}
此版本返回汽车名称;如果你想返回汽车的所有统计数据,你需要像
findcar <- function() {
while(TRUE) {
print("Type the car's name:")
apxname <- readline() # approx name
# list of cars that matches the approximate name
carlst <- mtcars[grepl(apxname, rownames(mtcars), ignore.case = TRUE),]
print("Here's the list of similar customers:")
print(carlst)
print("Type the number of your car:")
carnum <- readline() # car number
therightone <- carlst[as.numeric(carnum),]
print(paste("You selected",rownames(therightone),"Is this the car (Y/N)?", sep=" "))
carconf <- readline() # car confirmation
if(carconf == "Y") break
}
return(therightone)
}
“选择一个数字”提示可能会起作用,因为没有打印行号,但至少它起作用了。
关于regex - 在 r 中的正则表达式中粘贴带引号的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36205267/
我有一个类似 ( www.bbcurdu.com) 的网站。现在我的问题是,当我添加一个带有引号或引号的新故事时,它不会保存在数据库中。如果我删除这些逗号或引号,那么它将保存在数据库中。并正确获取和显
我正在使用(并坚持使用)以下版本的 Ruby: ruby 1.8.7 (2012-06-29 patchlevel 370) [x86_64-linux] 我尝试了很多谷歌搜索,但找不到解决我的问题的
我有以下示例数据, 我想连接 string1 和 string2 以产生连接结果 "a""b" 使用连接函数 我在官方的microsoft excel文档中没有找到任何答案 https://suppo
我是 SQL-mySQL 方面的 super 新手,我想查询这些包含具有特定值的列的条目,但该值中已经有引号,它实际上看起来像这样,引号已经存在:“荷兰鹿特丹 Voor Land-en Volkenk
是否有一个简单的正则表达式来匹配所有 unicode 引号?还是必须像这样手动编码: quotes = ur"[\"'\u2018\u2019\u201c\u201d]" 感谢阅读。 布莱恩 最佳答案
我有下面的代码,禁止将特殊字符插入到 HTML 表单上提交的文本中。 可以看出,我需要禁用的特殊字符位于引号之间,而我需要禁用引号 " 本身,但我不能这样做,因为如果我添加另一个中间的引号然后读起来就
对于给定的输入字符串 abc,[def,ghi,ijk],lm,(no,pq,rs),[tu,vw,xy],zs,"as,as,fr"输出应该是 abc [def,ghi,ijk] lm (no,pq
下午好,快乐 4 我在处理一些 javascript 时遇到了问题....我是一个初学者,正在使用这个特定的在线示例来了解如何淡入和淡出多个引号... 我已经实现了 HTML/Javascript/C
我想在一段文本周围加上引号。文本不能超过 3 行:如果超过,我想要一个省略号(并且我仍然想要引号)。我附上我现在拥有的东西。我的解决方案使用 JS:虽然纯 CSS 解决方案是理想的,但可能的 CSS
我将它发送给一个函数,我想在下面的变量值周围加上双引号,例如 $var = "New York"(注意引号) $fq.=" + area:$state"; 所以当我回显 $state 时我想用双
这个问题在这里已经有了答案: How can I make Java print quotes, like "Hello"? (11 个答案) 关闭 9 年前。 我想在 java 中打印反引号。但是
我认为这是 F# 的一个众所周知的限制,但我找不到任何好的解决方法…… 所以,这里是代码(我试图让它尽可能简单,所以它可能看起来没有任何意义): [] type Human (makeAName: u
我在Windows 7上,在Apache 2.4上使用PHP 5.6.14版:我必须使用PHP在SQLite3数据库上构建查询选择。 NOTA:我是PHP的再见..... 我的代码如下 '; echo
在 jQuery 文档中,大多数字符串都是使用单引号“声明”的。包括documentation用于 jQuery UI。 那为什么不呢 $(".datepicker").datepicker({ da
我正在尝试在 Java 中使用以下正则表达式,它应该与任何 lang="2-char-lang-name" 匹配: String lang = "lang=\"" + L.detectLang(inp
我试图在 more 之后插入一个 block 引用指令,不接受任何参数: First paragraph. .. more:: Blockquote here! -- Author S
我从外部进程获得了一些我无法更改的 JSON,并且我需要修改此 JSON 字符串才能使下游 Java 进程正常工作。 JSON 字符串如下所示: {"widgets":"blah","is_dog":
我试图在从数据库读取数据后生成 CSV 文件。现在单个数据可以包含逗号、单引号和双引号。 请告诉我如何在正则表达式的帮助下处理这种情况。 最佳答案 您可以为 CSV 文件使用不同的分隔符吗?也许是一个
我尝试在 codemodel(Sun) 中创建下一个表达式: driver.findElement(By.xpath("//div[text()=\""+whatToclick+"\"]/pare
我需要知道报价和列表之间的区别。例如: cl-prompt> (equal (first (list * 1 2)) *) T cl-prompt> (equal (first '(* 1 2)) *
我是一名优秀的程序员,十分优秀!