Toggle navigation
Genres
Frontend (2)
JavaScript (6)
Database (2)
Linux Server (3)
Web Apps (4)
Misc (4)
Search
List
New Tutorials
Last Modified Tutorials
</>
Code examples
code
smiko
javascript
basic
035stringmethods_search.js
035stringmethods_search.js
/** * String methods: search */ var str, pos; str = "This is SAMPLE od simple example!"; pos = str.search(/s\w+e/i); //returns first match console.log(pos); // 8
Reload page
Preview
W3C validation
Edit Code
JS Console