我想知道字符串是以指定的字符/字符串开头还是以jQuery结尾。
例如:
var str = 'Hello World';
if( str starts with 'Hello' ) {
alert('true');
} else {
alert('false');
}
if( str ends with 'World' ) {
alert('true');
} else {
alert('false');
}
如果没有任何功能,那么还有其他选择吗?
答案 0 :(得分:369)
一种选择是使用正则表达式:
if (str.match("^Hello")) {
// do this if begins with Hello
}
if (str.match("World$")) {
// do this if ends in world
}
答案 1 :(得分:88)
对于startswith,您可以使用indexOf:
if(str.indexOf('Hello') == 0) {
...
你可以根据字符串长度进行数学运算来确定'endswith'。
if(str.lastIndexOf('Hello') == str.length - 'Hello'.length) {
答案 2 :(得分:22)
不需要jQuery来做到这一点。你可以编写一个jQuery包装器,但它没用,所以你应该更好地使用
var str = "Hello World";
window.alert("Starts with Hello ? " + /^Hello/i.test(str));
window.alert("Ends with Hello ? " + /Hello$/i.test(str));
因为不推荐使用match()方法。
PS:RegExp中的“i”标志是可选的,代表不区分大小写(因此对于“hello”,“hEllo”等也会返回true。)
答案 3 :(得分:15)
你真的不需要jQuery来完成这些任务。在ES6规范中,他们已经开箱即用方法startsWith和endsWith。
var str = "To be, or not to be, that is the question.";
alert(str.startsWith("To be")); // true
alert(str.startsWith("not to be")); // false
alert(str.startsWith("not to be", 10)); // true
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
Currently available in FF and Chrome。对于旧版浏览器,您可以使用其polyfill或substr
答案 4 :(得分:9)
您可以随时扩展String
原型:
// Checks that string starts with the specific string
if (typeof String.prototype.startsWith != 'function') {
String.prototype.startsWith = function (str) {
return this.slice(0, str.length) == str;
};
}
// Checks that string ends with the specific string...
if (typeof String.prototype.endsWith != 'function') {
String.prototype.endsWith = function (str) {
return this.slice(-str.length) == str;
};
}
并像这样使用它:
var str = 'Hello World';
if( str.startsWith('Hello') ) {
// your string starts with 'Hello'
}
if( str.endsWith('World') ) {
// your string ends with 'World'
}
答案 5 :(得分:2)
ES6现在支持startsWith()
和endsWith()
方法来检查string
的开头和结尾。如果您想支持pre-es6引擎,您可能需要考虑将一种建议的方法添加到String
原型中。
if (typeof String.prototype.startsWith != 'function') {
String.prototype.startsWith = function (str) {
return this.match(new RegExp("^" + str));
};
}
if (typeof String.prototype.endsWith != 'function') {
String.prototype.endsWith = function (str) {
return this.match(new RegExp(str + "$"));
};
}
var str = "foobar is not barfoo";
console.log(str.startsWith("foob"); // true
console.log(str.endsWith("rfoo"); // true