show/hide this revision's text 3 fixed code display

Yesit . It is , as follows (thanks possible to call javascript functions

//(thanks to Mirnal Kant, SQLManager)
//Version 2 -- Prevent Firefox crashing 
//          -- Suspect a problem with continual createion creation of Regex Objectobjects

var g_RegExpString = null;
var g_RegExp = null;

//functions to be created for the db
var smDbFunctions = { 
  // (0) = Regex Expression
  // (1) = Column value to test
    regexp: {
        onFunctionCall: function(val) {
            if (g_RegExp == null || val.getString(0) != g_RegExpString) 
            {
                g_RegExpString = val.getString(0);
                g_RegExp = new RegExp(g_RegExpString);
            }
            if (val.getString(1).match(g_RegExp)) return 1;
            else return 0;
        }
    }
};

after instantiating a SQLite instance:

Database.createFunction("REGEXP", 2, smDbFunctions.regexp);
show/hide this revision's text 2 Code Version 2

Yes it is, as follows (thanks to Mirnal Kant)

//Version 2 -- Prevent problem with continual createion of Regex Object

var g_RegExpString = null;
var g_RegExp = null;

//functions to be created for the db
var smDbFunctions = { 
  //for use as where col regexp string_for_re
  / (0) = Regex Expression
  /col goes as the second argument
  / (1) = Column value to test
    regexp: {
        onFunctionCall: function(val) {
            var re if (g_RegExp == null || val.getString(0) != g_RegExpString) 
            {
                g_RegExpString = val.getString(0);
                g_RegExp = new RegExp(val.getString(0))RegExp(g_RegExpString);
            }
            if (val.getString(1).match(re))
        val.getString(1).match(g_RegExp)) return 1;
            else return 0;
        }
    }
};

after instantiating a SQLite instance:

Database.createFunction("REGEXP", 2, smDbFunctions.regexp);
show/hide this revision's text 1

Yes it is, as follows (thanks to Mirnal Kant)

//functions to be created for the db
var smDbFunctions = {
  //for use as where col regexp string_for_re
  // col goes as the second argument
  regexp: {
    onFunctionCall: function(val) {
      var re = new RegExp(val.getString(0));
      if (val.getString(1).match(re))
        return 1;
      else
        return 0;
    }
  }
};

after instantiating a SQLite instance:

Database.createFunction("REGEXP", 2, smDbFunctions.regexp);