Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have string as this is test for alternative. What I want to find is location of for. I know I could have done this using alert(myString.indexOf("for")), however I don't want to use indexOf.

Any idea/ suggestion for alternative?

jsfiddle

Again, I need this done by Javascript only. No jQuery.. sadly :(

share|improve this question
3  
"however I don't want to use indexOf." Why not? Without that information, the question is pretty strange. – T.J. Crowder Dec 2 '12 at 12:25
1  
Always include all relevant code and markup in the question itself, don't just link. meta.stackoverflow.com/questions/118392/… – T.J. Crowder Dec 2 '12 at 12:26
@T.J.Crowder : I just wanted to know alternate way... that's it... any more questions for me? – Fahim Parkar Dec 2 '12 at 12:29
1  
@ Fahim: "I just wanted to know alternate way" Again, why? For what purpose? Is there any reason for needing an alternative? From the FAQ: "You should only ask practical, answerable questions based on actual problems that you face" – T.J. Crowder Dec 2 '12 at 12:35

3 Answers

up vote 3 down vote accepted
.search()?

"this is test for alternative".search("for")
>> 13
share|improve this answer
thanks Barak :) – Fahim Parkar Dec 2 '12 at 12:31
2  
@FahimParkar: Note that search is not a direct replacement for indexOf. For example, "10 * 5 = 50".indexOf("*") is 3, but "10 * 5 = 50".search("*") throws an error. "Hi, my name is Joe.".indexOf(".") is 18 but "Hi, my name is Joe.".search(".") is 0. – T.J. Crowder Dec 2 '12 at 12:36

You could code your own indexOf ? You loop on the source string and on each character you check if it could be your searched word.

An untested version to give you an idea:

function myIndexOf(myString, word) {
    var len = myString.length;
    var wordLen = word.length;
    for(var i = 0; i < len; i++) {
        var j = 0;
        for(j = 0; j < wordLen; j++) {
            if(myString[i+j] != word[j]) {
                break;
            }
        }
        if(j == wordLen) {
            return i;
        }
    }

    return -1;
}
share|improve this answer

Will this work for you?

String.prototype.regexIndexOf = function(regex, startpos) {
  var indexOf = this.substring(startpos || 0).search(regex);
  return (indexOf >= 0) ? (indexOf + (startpos || 0)) : indexOf;
}

See JSfiddle

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.