summaryrefslogtreecommitdiffstats
path: root/dom/xslt/xslt/txEXSLTRegExFunctions.sys.mjs
blob: d13ea6bea50836cba5d806ade8e4c610938e0cf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* -*- indent-tabs-mode: nil; js-indent-level: 4 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

export function match(str, regex, flags, doc) {
  var docFrag = doc.createDocumentFragment();
  var re = new RegExp(regex, flags);
  var matches = str.match(re);
  if (matches != null) {
    for (var i = 0; i < matches.length; ++i) {
      var match = matches[i];
      var elem = doc.createElementNS(null, "match");
      var text = doc.createTextNode(match ? match : "");
      elem.appendChild(text);
      docFrag.appendChild(elem);
    }
  }
  return docFrag;
}

export function replace(str, regex, flags, replace) {
  var re = new RegExp(regex, flags);

  return str.replace(re, replace);
}

export function test(str, regex, flags) {
  var re = new RegExp(regex, flags);

  return re.test(str);
}