zig.com Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<h2>JavaScript Regular Expressions</h2>
<p>Do a global search for the hexadecimal number 0057 (W) in a string:</p>
<p id="demo"></p>
<script>
  let text = "Visit W3Schools. Hello World!";
  let result = text.match(/\u0057/g);
  document.getElementById("demo").innerHTML = result;
</script>
</body>
<!-- /js/tryit.asp?filename=tryjs_regexp_ux  Thu, 06 Feb 2025 19:15:28 GMT -->
</html>