Questions tagged «search»

有关搜索算法机制和实现的问题。*不是*有关在API中使用搜索工具(例如Google,Bing,Facebook)的问题。

15
用于搜索Gadaffi的正则表达式
我正在尝试搜索Gadaffi一词。搜索此的最佳正则表达式是什么? 到目前为止,我最好的尝试是: \b[KG]h?add?af?fi$\b 但是我似乎仍然缺少一些期刊。有什么建议么? 更新:我在这里找到了一个非常详尽的列表:http : //blogs.abcnews.com/theworldnewser/2009/09/how-many-different-ways-can-you-spell-gaddafi.html 以下答案与所有​​30个变体匹配: 加达菲 加达菲 加达菲 卡扎菲 卡扎菲 卡扎菲 卡扎菲 加沙菲 加达菲 加达菲 加达菲 加达菲 吉达菲 卡达菲 卡达菲 卡达菲 卡扎菲 卡扎菲 卡达菲 卡达菲 卡达菲 卡达菲 卡扎菲 卡扎菲 卡扎菲 卡扎菲 卡塔菲 夸沙菲 古达菲 卡达菲
361 regex  search 




1
如何在Python中找到与正则表达式的所有匹配项?
在我编写的程序中,我使用Python re.search()函数在文本块中查找匹配项并打印结果。但是,一旦找到文本块中的第一个匹配项,程序就会退出。 在找到所有匹配项之前程序不停止的情况下,如何重复执行此操作?是否有单独的功能来执行此操作?
312 python  regex  search 


10
如何在多个文件中搜索字符串并在Powershell中返回文件名?
几天前,我已经开始学习Powershell,但在Google上找不到我需要的任何东西,因此请耐心等待。 我被要求将一些文本字符串替换为多个文件。我不一定知道可能目标文件的扩展名,也不知道它们的位置。到目前为止,我已经设法递归浏览到目录(get-ChildItem -recurse),并使用get-content和select-string找到了我正在寻找的字符串: Get-ChildItem -recurse | Get-Content | Select-String -pattern "dummy" 问题是,我可以看到要查找的文本的出现,但是我不知道如何告诉PS返回每个匹配文件的路径和名称。 如何获取包含要查找的表达式的文件的名称和位置?

28
使用C#检查字符串是否在字符串数组中包含字符串
我想使用C#检查字符串值是否在字符串数组中包含单词。例如, string stringToCheck = "text1text2text3"; string[] stringArray = { "text1", "someothertext", etc... }; if(stringToCheck.contains stringArray) //one of the items? { } 如何检查'stringToCheck'的字符串值在数组中是否包含单词?
290 c#  arrays  string  search 

11
不区分大小写的搜索
我正在尝试使用JavaScript中的两个字符串进行不区分大小写的搜索。 通常情况如下: var string="Stackoverflow is the BEST"; var result= string.search(/best/i); alert(result); 该/i标志将不区分大小写。 但是我需要搜索第二个字符串。没有标志,它可以完美地工作: var string="Stackoverflow is the BEST"; var searchstring="best"; var result= string.search(searchstring); alert(result); 如果将/i标记添加到上面的示例中,它将搜索searchstring而不是变量“ searchstring”中的内容(下一个示例不起作用): var string="Stackoverflow is the BEST"; var searchstring="best"; var result= string.search(/searchstring/i); alert(result); 我该如何实现?

6
在Github项目中搜索代码
有没有办法在Github项目的代码中进行grep的处理? 我可以提取源代码并在本地grep,但是我想知道是否可以通过Web界面或第三方替代方案。 有想法吗?
272 git  search  github 



3
如何在ruby中按哈希值在哈希数组中搜索?
我有一系列哈希,@ fathers。 a_father = { "father" => "Bob", "age" => 40 } @fathers << a_father a_father = { "father" => "David", "age" => 32 } @fathers << a_father a_father = { "father" => "Batman", "age" => 50 } @fathers << a_father 我如何搜索该数组并返回一个哈希数组,对于该数组,块返回true? 例如: @fathers.some_method("age" > 35) #=> array containing the …
234 ruby  search  hash  arrays 



By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.