5 lines
81 B
JavaScript
5 lines
81 B
JavaScript
"use strict";
|
|
|
|
var string = "foo💩bar";
|
|
var match = string.match(/foo(.)bar/);
|