Contact: aviboots(AT)netvision.net.il
39,971 questions
51,913 answers
573 users
var str = "The worlds most popular Programming Q&A"; var pos = str.indexOf("popular"); document.write(pos); /* run: 16 */
var str = "The worlds most popular Programming Q&A"; var pos = str.indexOf("PHP"); document.write(pos); /* run: -1 // not found */
var str = "The worlds most popular Programming Q&A"; //string.indexOf(search_value, start_index) var pos = str.indexOf("o", 6); document.write(pos); /* run: 12 */
var str = "The worlds most popular Programming Q&A"; var pos = str.search("most"); document.write(pos); /* run: 11 */
var str = "The worlds most popular Programming Q&A"; var pos = str.search("MOST"); document.write(pos); /* run: -1 // not found (case-sensitive) */
var str = "The worlds most popular Programming Q&A"; var pos = str.search(/MOST/i); // case-insensitive document.write(pos); /* run: 11 */