admin管理员组文章数量:1344927
I am trying to find some string part in another string. And I found a function called search()
and tried this:
if("".search("http://") > 0){
alert('with http');
} else {
alert('no http');
}
but it is giving me no http
even if it has http://
part in it. here is the fiddle:
/
can you please help me out?
I am trying to find some string part in another string. And I found a function called search()
and tried this:
if("http://www.google.de".search("http://") > 0){
alert('with http');
} else {
alert('no http');
}
but it is giving me no http
even if it has http://
part in it. here is the fiddle:
http://jsfiddle/xXTuY/2/
can you please help me out?
Share Improve this question edited Apr 28, 2013 at 6:09 intelis 8,06814 gold badges60 silver badges105 bronze badges asked Apr 28, 2013 at 6:01 doniyordoniyor 38k61 gold badges181 silver badges270 bronze badges 7- 1 try reversing the condition – John Dvorak Commented Apr 28, 2013 at 6:03
-
1
search
expects a regex, not a literal match – John Dvorak Commented Apr 28, 2013 at 6:05 -
I've reverted
~
back to> -1
in my answer. Was that why you've unaccepted? – John Dvorak Commented Apr 28, 2013 at 6:20 - Please unaccept Chris' answer. He wants to delete it as it is incorrect. – John Dvorak Commented Apr 28, 2013 at 15:08
-
@doniyor out of interest where are you getting the string
http://www.google.de
from? – Chris Moutray Commented Apr 28, 2013 at 15:38
2 Answers
Reset to default 9First, String#search
expects a regex, not a string. If it encounters a non-regex, it tries to convert it into a regex via new RegExp(patt)
. In case of a string, it treats the string as a regex pattern. This means that your search will behave unexpectedly (match more than desired, match less than desired or even throw a syntax error, if the string is not a valid regex) if the search string contains characters that have a special meaning in regular expressions. Use indexOf
instead.
Second, search
and indexOf
return the position of the first match, or -1 if no match has been found. This means that if the return value is less than zero, nothing has been found. If the return value is zero, the match was made at the beginning of the string.
Also note there is a handy shortcut for x != -1
: the bitwise negation ~x
if("http://www.google.de".indexOf("http://") > -1){
alert('with http');
} else {
alert('no http');
}
"http://www.google.de".search("http://")
returns 0. 0 is not less than 0 so your condition evaluates to false.
本文标签: htmlsimple javascript search() function is not workingStack Overflow
版权声明:本文标题:html - simple javascript search() function is not working - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743805617a2542125.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论