Answers:
.toLowerCase()
在之后添加referrer
。此方法将字符串转换为小写字符串。然后,使用.indexOf()
using ral
代替Ral
。
if (referrer.toLowerCase().indexOf("ral") === -1) {
使用正则表达式也可以实现相同的目的(在要针对动态模式进行测试时特别有用):
if (!/Ral/i.test(referrer)) {
// ^i = Ignore case flag for RegExp
.search
方法:var index = referrer.search(/Ral/i);
另一种选择是使用搜索方法,如下所示:
if (referrer.search(new RegExp("Ral", "i")) == -1) { ...
然后看起来更优雅,然后将整个字符串转换为小写字母,这样可能会更有效率。
随着toLowerCase()
代码有两个传过来的字符串,一个是通过对整个字符串将其转换为小写,另一个是寻找所需的索引。
通过RegExp
该代码,可以在看起来与所需索引匹配的字符串上进行一次遍历。
因此,在长字符串上,我建议使用RegExp
版本(我想在短字符串上,这种效率取决于创建RegExp
对象)
使用RegExp:
if (!/ral/i.test(referrer)) {
...
}
或者,使用.toLowerCase()
:
if (referrer.toLowerCase().indexOf("ral") == -1)
从ES2016起,您还可以使用稍微更好/更容易/更优雅的方法(区分大小写):
if (referrer.includes("Ral")) { ... }
或(不区分大小写):
if (referrer.toLowerCase().includes(someString.toLowerCase())) { ... }
下面是一些比较.indexOf()
和.includes()
:
https://dev.to/adroitcoder/includes-vs-indexof-in-javascript
includes
是区分大小写的 Chrome浏览器:尝试'fooBar'.includes('bar')
==>false
这里有几种方法。
如果只想对此实例执行不区分大小写的检查,请执行以下操作。
if (referrer.toLowerCase().indexOf("Ral".toLowerCase()) == -1) {
...
另外,如果您要定期执行此检查,则可以向添加新indexOf()
的类似方法String
,但不区分大小写。
String.prototype.indexOfInsensitive = function (s, b) {
return this.toLowerCase().indexOf(s.toLowerCase(), b);
}
// Then invoke it
if (referrer.indexOfInsensitive("Ral") == -1) { ...
defineProperty
建议支持的现代浏览器,我建议Object.defineProperty(String.prototype, 'indexOfInsensitive', {value: function(s,b){return this.toLowerCase().indexOf((s+'').toLowerCase(),b);}});
。两个更新:使用显式串转换(s+'')
,并在一个循环中不可枚举(for(var i in '') ...
不显示indexOfInsensitive
。
if (referrer.toUpperCase().indexOf("RAL") == -1) { ...
你可以试试这个
str = "Wow its so COOL"
searchStr = "CoOl"
console.log(str.toLowerCase().includes(searchStr.toLowerCase()))
任何语言的示例:
'My name is Хведор'.toLocaleLowerCase().includes('ХвЕдОр'.toLocaleLowerCase())
现在是2016年,没有明确的方法来做到这一点?我希望有一些复制。我去吧
设计说明:我想最大程度地减少内存使用,从而提高速度-因此,没有字符串的复制/变异。我认为V8(和其他引擎)可以优化此功能。
//TODO: Performance testing
String.prototype.naturalIndexOf = function(needle) {
//TODO: guard conditions here
var haystack = this; //You can replace `haystack` for `this` below but I wan't to make the algorithm more readable for the answer
var needleIndex = 0;
var foundAt = 0;
for (var haystackIndex = 0; haystackIndex < haystack.length; haystackIndex++) {
var needleCode = needle.charCodeAt(needleIndex);
if (needleCode >= 65 && needleCode <= 90) needleCode += 32; //ToLower. I could have made this a function, but hopefully inline is faster and terser
var haystackCode = haystack.charCodeAt(haystackIndex);
if (haystackCode >= 65 && haystackCode <= 90) haystackCode += 32; //ToLower. I could have made this a function, but hopefully inline is faster and terser
//TODO: code to detect unicode characters and fallback to toLowerCase - when > 128?
//if (needleCode > 128 || haystackCode > 128) return haystack.toLocaleLowerCase().indexOf(needle.toLocaleLowerCase();
if (haystackCode !== needleCode)
{
foundAt = haystackIndex;
needleIndex = 0; //Start again
}
else
needleIndex++;
if (needleIndex == needle.length)
return foundAt;
}
return -1;
}
我名字的原因:
为什么不...:
toLowerCase()
-可能在同一字符串上重复调用toLowerCase。RegExp
-难以搜索变量。甚至RegExp对象也难以转义字符为了更好地进行搜索,请使用以下代码,
var myFav = "javascript";
var theList = "VB.NET, C#, PHP, Python, JavaScript, and Ruby";
// Check for matches with the plain vanilla indexOf() method:
alert( theList.indexOf( myFav ) );
// Now check for matches in lower-cased strings:
alert( theList.toLowerCase().indexOf( myFav.toLowerCase() ) );
在第一个alert()中,JavaScript返回“ -1”-换句话说,indexOf()找不到匹配项:这仅仅是因为“ JavaScript”在第一个字符串中小写,而在第二个字符串中大写。要使用indexOf()执行不区分大小写的搜索,可以将两个字符串都设置为大写或小写。这意味着,与第二个alert()一样,JavaScript将仅检查您要查找的字符串的出现,忽略大小写。
参考, http://freewebdesigntutorials.com/javaScriptTutorials/jsStringObject/indexOfMethod.htm
这是我的看法:
剧本:
var originalText = $("#textContainer").html()
$("#search").on('keyup', function () {
$("#textContainer").html(originalText)
var text = $("#textContainer").html()
var val = $("#search").val()
if(val=="") return;
var matches = text.split(val)
for(var i=0;i<matches.length-1;i++) {
var ind = matches[i].indexOf(val)
var len = val.length
matches[i] = matches[i] + "<span class='selected'>" + val + "</span>"
}
$("#textContainer").html(matches.join(""))
HTML:
<input type="text" id="search">
<div id="textContainer">
lorem ipsum is simply dummy text of the printing and typesetting industry. lorem ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of letraset sheets containing lorem ipsum passages, and more recently with desktop publishing software like Aldus pagemaker including versions of lorem ipsum.</div>
RegExp
直接从用户输入创建直接输入的陷阱。例如,用户可以输入,*
并且RegExp
构造函数中将引发错误。公认的解决方案不存在此问题。