Login   Register  
PHP Classes
elePHPant
Icontem

File: table_regexp_store_data

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Uldis Nelsons  >  Regexp store  >  table_regexp_store_data  
File: table_regexp_store_data
Role: Auxiliary data
Content type: text/plain
Description: example expresions data
Class: Regexp store
Apply regular expressions from a MySQL database
 

Contents

Class file image Download
/*Data for the table `regexp_store` */

insert  into `regexp_store`(`id`,`group_name`,`name`,`sqn`,`begin_end_symbol`,`pattern`,`replacement`,`comment`,`deleted`) values (71,'digits','one',1,'#','1|I','one',NULL,0);
insert  into `regexp_store`(`id`,`group_name`,`name`,`sqn`,`begin_end_symbol`,`pattern`,`replacement`,`comment`,`deleted`) values (72,'digits','two',2,'#','2|II','two',NULL,0);
insert  into `regexp_store`(`id`,`group_name`,`name`,`sqn`,`begin_end_symbol`,`pattern`,`replacement`,`comment`,`deleted`) values (73,'digits','three',3,'#','3','three',NULL,0);
insert  into `regexp_store`(`id`,`group_name`,`name`,`sqn`,`begin_end_symbol`,`pattern`,`replacement`,`comment`,`deleted`) values (74,'delimiters','slash',1,'#','/',NULL,NULL,0);
insert  into `regexp_store`(`id`,`group_name`,`name`,`sqn`,`begin_end_symbol`,`pattern`,`replacement`,`comment`,`deleted`) values (75,'delimiters','coma',2,'#',',',NULL,NULL,0);
insert  into `regexp_store`(`id`,`group_name`,`name`,`sqn`,`begin_end_symbol`,`pattern`,`replacement`,`comment`,`deleted`) values (76,'delimiters','semicolon',3,'#',';',NULL,NULL,0);
insert  into `regexp_store`(`id`,`group_name`,`name`,`sqn`,`begin_end_symbol`,`pattern`,`replacement`,`comment`,`deleted`) values (77,'units','length',1,'#','m',NULL,NULL,0);
insert  into `regexp_store`(`id`,`group_name`,`name`,`sqn`,`begin_end_symbol`,`pattern`,`replacement`,`comment`,`deleted`) values (78,'units','length',1,'#','cm',NULL,NULL,0);
insert  into `regexp_store`(`id`,`group_name`,`name`,`sqn`,`begin_end_symbol`,`pattern`,`replacement`,`comment`,`deleted`) values (79,'units','weight',2,'#','[Kk]g',NULL,NULL,0);
insert  into `regexp_store`(`id`,`group_name`,`name`,`sqn`,`begin_end_symbol`,`pattern`,`replacement`,`comment`,`deleted`) values (80,'units','weight',3,'#','t',NULL,NULL,0);
insert  into `regexp_store`(`id`,`group_name`,`name`,`sqn`,`begin_end_symbol`,`pattern`,`replacement`,`comment`,`deleted`) values (81,'units','money',4,'#','USD',NULL,NULL,0);
insert  into `regexp_store`(`id`,`group_name`,`name`,`sqn`,`begin_end_symbol`,`pattern`,`replacement`,`comment`,`deleted`) values (82,'units','money',5,'#','L(?:s|VL)',NULL,NULL,0);
insert  into `regexp_store`(`id`,`group_name`,`name`,`sqn`,`begin_end_symbol`,`pattern`,`replacement`,`comment`,`deleted`) values (83,'units','all',6,'#','m|t|kg|cm|USD|LVL',NULL,NULL,0);
insert  into `regexp_store`(`id`,`group_name`,`name`,`sqn`,`begin_end_symbol`,`pattern`,`replacement`,`comment`,`deleted`) values (84,'demo','callback',1,'#','.*(matched against)(.*)','callback_demo','preg_replace_callback() demo',0);