Posts by Guilherme Saldanha • 41 points
2 posts
-
0
votes1
answer33
viewsQ: Negative lookahead in php
What’s wrong with that regular expression? preg_match_all('/{{.*?(?!\|e)}}/',$content,$matches); In the text below it should not take {{Expression|e}} since I am denying the |e in the group (?!\|e)…
-
3
votes1
answer1152
viewsQ: How do I update a datatable line with jquery?
I have the following code working to add a row to the table dynamically var NovaLinha = [usuario,email,senha,ativo,acao]; NovaLinha.id = retorno; $('#tabela').DataTable().row.add(NovaLinha).draw();…
jqueryasked Guilherme Saldanha 41