3
0
mirror of https://github.com/reality/dbot.git synced 2024-12-24 03:33:07 +01:00

Allow flags on the regexen [#154]

This commit is contained in:
reality 2013-01-21 20:32:34 +00:00
parent 24bb198c5d
commit ed1b4bf717

View File

@ -3,9 +3,10 @@ var _ = require('underscore')._;
var regex = function(dbot) {
this.last = {};
this.listener = function(event) {
var q = event.message.valMatch(/^([\d\w\s]*)?:? ?s\/(.+)\/(.+)\/$/, 4);
var q = event.message.valMatch(/^([\d\w\s]*)?:? ?s\/(.+)\/(.+)\/([ig]*)?$/, 5);
if(q) {
var toMatch = new RegExp(q[2]),
var flags = q[4],
toMatch = new RegExp(q[2], flags),
replaceWith = q[3],
last,
replacement;