在 JavaScript 中如何检查字符串是否以特定字符结尾?

例子:我有一根绳子

var str = "mystring#";

我想知道该字符串是否以以下结尾 #. 。我怎样才能检查它?

  1. 有没有 endsWith() JavaScript 中的方法?

  2. 我的一个解决方案是获取字符串的长度并获取最后一个字符并检查它。

这是最好的方法还是还有其他方法?

有帮助吗?

解决方案

更新(2015 年 11 月 24 日):

这个答案最初发布于 2010 年(六年前)。所以请注意这些富有洞察力的评论:


原答案:

我知道这是一个一年前的问题......但我也需要这个,我需要它跨浏览器工作,所以...... 结合大家的回答和评论 并稍微简化一下:

String.prototype.endsWith = function(suffix) {
    return this.indexOf(suffix, this.length - suffix.length) !== -1;
};
  • 不创建子字符串
  • 使用本机 indexOf 以获得最快结果的功能
  • 使用第二个参数跳过不必要的比较 indexOf 向前跳
  • 适用于 Internet Explorer
  • 无正则表达式并发症

另外,如果您不喜欢在本机数据结构的原型中填充内容,这里有一个独立版本:

function endsWith(str, suffix) {
    return str.indexOf(suffix, str.length - suffix.length) !== -1;
}

编辑: 正如 @hamish 在评论中指出的,如果您想在安全方面犯错误并检查是否已经提供了实现,您可以添加一个 typeof 像这样检查:

if (typeof String.prototype.endsWith !== 'function') {
    String.prototype.endsWith = function(suffix) {
        return this.indexOf(suffix, this.length - suffix.length) !== -1;
    };
}

其他提示

/#$/.test(str)

将适用于所有浏览器,不需要猴子修补 String ,并且不需要扫描整个字符串,因为 lastIndexOf 在没有匹配时执行。

如果要匹配可能包含正则表达式特殊字符的常量字符串,例如'$',则可以使用以下内容:

function makeSuffixRegExp(suffix, caseInsensitive) {
  return new RegExp(
      String(suffix).replace(/[$%()*+.?\[\\\]{|}]/g, "\\
makeSuffixRegExp("a[complicated]*suffix*").test(str)
amp;") + "<*>quot;, caseInsensitive ? "i" : ""); }

然后你可以像这样使用它

<*>
  1. 不幸的是没有。
  2. if(&quot; mystring#&quot; .substr(-1)===&quot;#&quot;){}

来吧,这是正确的 endsWith 实现:

String.prototype.endsWith = function (s) {
  return this.length >= s.length && this.substr(this.length - s.length) == s;
}

使用 lastIndexOf 只会在没有匹配的情况下创建不必要的CPU循环。

这个版本避免了创建子字符串,并且不使用正则表达式(这里的一些正则表达式答案会起作用;其他的都会被破坏):

String.prototype.endsWith = function(str)
{
    var lastIndex = this.lastIndexOf(str);
    return (lastIndex !== -1) && (lastIndex + str.length === this.length);
}

如果性能对您很重要,那么 lastIndexOf 实际上是否比创建子字符串更快是值得的。 (它很可能取决于你正在使用的JS引擎......)在匹配的情况下它可能会更快,当字符串很小时 - 但是当字符串很大时它需要回顾整个事情甚至虽然我们并不在乎:(

要检查单个字符,找到长度然后使用 charAt 可能是最好的方法。

没有看到使用 slice 方法的方法。所以我就把它留在这里:

function endsWith(str, suffix) {
    return str.slice(-suffix.length) === suffix
}
return this.lastIndexOf(str) + str.length == this.length;

在原始字符串长度比搜索字符串长度少一个并且找不到搜索字符串的情况下不起作用:

lastIndexOf返回-1,然后添加搜索字符串长度,并保留原始字符串的长度。

可能的解决方法是

return this.length >= str.length && this.lastIndexOf(str) + str.length == this.length

来自developer.mozilla.org String.prototype.endsWith()

概括

endsWith() 方法确定一个字符串是否以另一个字符串的字符结尾,并根据需要返回 true 或 false。

句法

str.endsWith(searchString [, position]);

参数

  • 搜索字符串 :要在此字符串末尾搜索的字符。

  • 位置 :在此字符串中搜索,就好像该字符串只有这么长一样;默认为该字符串的实际长度,限制在该字符串长度建立的范围内。

描述

此方法可让您确定一个字符串是否以另一个字符串结尾。

例子

var str = "To be, or not to be, that is the question.";

alert( str.endsWith("question.") );  // true
alert( str.endsWith("to be") );      // false
alert( str.endsWith("to be", 19) );  // true

规格

ECMAScript 语言规范第六版 (ECMA-262)

浏览器兼容性

Browser compatibility

if( ("mystring#").substr(-1,1) == '#' )

- 或 -

if( ("mystring#").match(/#$/) )
String.prototype.endsWith = function(str) 
{return (this.match(str+"
var myStr = “  Earth is a beautiful planet  ”;
var myStr2 = myStr.trim();  
//==“Earth is a beautiful planet”;

if (myStr2.startsWith(“Earth”)) // returns TRUE

if (myStr2.endsWith(“planet”)) // returns TRUE

if (myStr.startsWith(“Earth”)) 
// returns FALSE due to the leading spaces…

if (myStr.endsWith(“planet”)) 
// returns FALSE due to trailing spaces…
quot;)==str)} String.prototype.startsWith = function(str) {return (this.match("^"+str)==str)}

我希望这会有所帮助

function strStartsWith(str, prefix) {
    return str.indexOf(prefix) === 0;
}

function strEndsWith(str, suffix) {
    return str.match(suffix+"<*>quot;)==suffix;
}

传统方式

<*>

我不了解你,但是:

var s = "mystring#";
s.length >= 1 && s[s.length - 1] == '#'; // will do the thing!

为什么正则表达式?为什么搞乱原型? SUBSTR?拜托...

如果您正在使用 lodash

_.endsWith('abc', 'c'); // true

如果不使用lodash,您可以借用其

我刚刚了解了这个字符串库:

http://stringjs.com/

包含js文件,然后使用 S 变量,如下所示:

S('hi there').endsWith('hi there')

它也可以通过安装在NodeJS中使用:

npm install string

然后要求它作为 S 变量:

var S = require('string');

该网页还包含指向备用字符串库的链接,如果这个字符串库没有您喜欢的话。

使用正则表达式的另一个快速替代方案对我来说就像一个魅力:

// Would be equivalent to:
// "Hello World!".endsWith("World!")
"Hello World!".match("World!<*>quot;) != null
function strEndsWith(str,suffix) {
  var reguex= new RegExp(suffix+');

  if (str.match(reguex)!=null)
      return true;

  return false;
}

这么小的问题有很多东西,只需使用这个正则表达式

var str = "mystring#";
var regex = /^.*#$/

if (regex.test(str)){
  //if it has a trailing '#'
}

这个问题花了很多年。让我为想要使用投票最多的chakrit答案的用户添加一个重要的更新。

'endsWith'函数已作为ECMAScript 6(实验技术)的一部分添加到JavaScript中

请参阅此处: https:// developer。 mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/String/endsWith

因此,强烈建议添加检查是否存在本机实现,如答案中所述。

function check(str)
{
    var lastIndex = str.lastIndexOf('/');
    return (lastIndex != -1) && (lastIndex  == (str.length - 1));
}

未来证明和/或防止覆盖现有原型的方法是进行测试检查,看它是否已经添加到String原型中。这是我对非正则表达式高评级版本的看法。

if (typeof String.endsWith !== 'function') {
    String.prototype.endsWith = function (suffix) {
        return this.indexOf(suffix, this.length - suffix.length) !== -1;
    };
}

@ chakrit接受的答案是一个可靠的方法来自己做。但是,如果您正在寻找一个打包的解决方案,我建议您查看 underscore.string ,正如@mlunoe指出的那样。使用underscore.string,代码为:

function endsWithHash(str) {
  return _.str.endsWith(str, '#');
}

如果你不想使用lasIndexOf或substr那么为什么不只看它自然状态下的字符串(即数组)

String.prototype.endsWith = function(suffix) {
    if (this[this.length - 1] == suffix) return true;
    return false;
}

或作为独立功能

function strEndsWith(str,suffix) {
    if (str[str.length - 1] == suffix) return true;
    return false;
}
String.prototype.endWith = function (a) {
    var isExp = a.constructor.name === "RegExp",
    val = this;
    if (isExp === false) {
        a = escape(a);
        val = escape(val);
    } else
        a = a.toString().replace(/(^\/)|(\/$)/g, "");
    return eval("/" + a + "$/.test(val)");
}

// example
var str = "Hello";
alert(str.endWith("lo"));
alert(str.endWith(/l(o|a)/));

经过所有这些长长的答案,我发现这段代码简单易懂!

function end(str, target) {
  return str.substr(-target.length) == target;
}

这是endsWith的实现:

String.prototype.endsWith = function(str){   return this.length&gt; = str.length&amp;&amp; this.substr(this.length - str.length)== str; }

这是endsWith的实现: <代码> String.prototype.endsWith = function(str){   return this.length&gt; = str.length&amp;&amp; this.substr(this.length - str.length)== str; }

这建立在@ charkit接受的答案之上,允许使用字符串数组或字符串作为参数传入。

if (typeof String.prototype.endsWith === 'undefined') {
    String.prototype.endsWith = function(suffix) {
        if (typeof suffix === 'String') {
            return this.indexOf(suffix, this.length - suffix.length) !== -1;
        }else if(suffix instanceof Array){
            return _.find(suffix, function(value){
                console.log(value, (this.indexOf(value, this.length - value.length) !== -1));
                return this.indexOf(value, this.length - value.length) !== -1;
            }, this);
        }
    };
}

这需要下划线 - 但可以调整以删除下划线依赖。

if(typeof String.prototype.endsWith !== "function") {
    /**
     * String.prototype.endsWith
     * Check if given string locate at the end of current string
     * @param {string} substring substring to locate in the current string.
     * @param {number=} position end the endsWith check at that position
     * @return {boolean}
     *
     * @edition ECMA-262 6th Edition, 15.5.4.23
     */
    String.prototype.endsWith = function(substring, position) {
        substring = String(substring);

        var subLen = substring.length | 0;

        if( !subLen )return true;//Empty string

        var strLen = this.length;

        if( position === void 0 )position = strLen;
        else position = position | 0;

        if( position < 1 )return false;

        var fromIndex = (strLen < position ? strLen : position) - subLen;

        return (fromIndex >= 0 || subLen === -fromIndex)
            && (
                position === 0
                // if position not at the and of the string, we can optimise search substring
                //  by checking first symbol of substring exists in search position in current string
                || this.charCodeAt(fromIndex) === substring.charCodeAt(0)//fast false
            )
            && this.indexOf(substring, fromIndex) === fromIndex
        ;
    };
}

好处:

不要使用正则表达式。即使在快速语言中它们也很慢。只需编写一个检查字符串结尾的函数。这个库有很好的例子: groundjs / util.js 。 小心向String.prototype添加一个函数。这段代码有很好的例子说明如何: groundjs / prototype.js 一般来说,这是一个很好的语言级库: groundjs 你也可以看看lodash

所有这些都是非常有用的例子。添加 String.prototype.endsWith = function(str)将帮助我们简单地调用方法来检查我们的字符串是否以它结束,regexp也会这样做。

我找到了比我更好的解决方案。谢谢你们。

对于coffeescript

String::endsWith = (suffix) ->
  -1 != @indexOf suffix, @length - suffix.length
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top