wiki/content/20201104101924-javascript_regexp_exec_method.md

22 lines
482 B
Markdown
Raw Normal View History

2024-05-06 20:40:05 +00:00
---
id: 879b1425-8e59-4a5b-a2d8-08838e193b88
title: JavaScript RegExp Exec Method
---
exec[^1] returns `null` if no match was found or an object with
information about the match otherwise:
``` javascript
let match = /\d+/.exec("one two 100");
console.log(match);
console.log(match.index);
```
# See also
- [match](20201104102212-javascript_regexp_match_method)
# Footnotes
[^1]: <https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/exec>