We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 074677c commit 399bec0Copy full SHA for 399bec0
Find Email.js
@@ -0,0 +1,4 @@
1
+function findEmail(str) {
2
+ var re = /[a-zA-Z0-9\.]+@[a-zA-Z0-9\.]+/g;
3
+ return str.match(re);
4
+}
0 commit comments