Intento verificar una cadena con un patrón usando una expresión regular con python en una base de datos sqlite. tengo un problema cuando intento cadena de búsqueda de tener "con un patern usando" Para exemple:Problema con regexp python y sqlite
cur.execute("insert into articles(id,subject) values (1,'aaa\"test\"')")
cur.execute("select id,subject from articles where id = 1")
print (cur.fetchall())
cur.execute("select subject from articles where subject regexp '\"test\"' ")
print (cur.fetchall())
Debería \" antes de expresión regular de otro modo el compilador no tiene gusto ... de error syntaxe
[(1, 'aaa"test"')]
[] <????? should found
Alguien sabe cómo hacer que
Mi función expresión regular:? con.create_function ("expresión regular", 2, expresión regular)
Muchas gracias, esto realmente ayudó. –