Posts by Allan Nozomu Fukasawa • 1 point
3 posts
-
0
votes2
answers255
viewsA: Regex take value from previous line
Bo test regerx and it seemed to work (.+)\nOUTRAS INFORMAÇÕES In python import re str = """ NOME: TESTE DE SILVA SAURO CPF: 785.981.970-84 DECLARAÇÃO DE AJUSTE ANUAL IMPOSTO SOBRE A RENDA - PESSOA…
regexanswered Allan Nozomu Fukasawa 1 -
0
votes1
answer52
viewsA: Disjunction between two types of users using if
I didn’t quite understand your question. I don’t know if a User has necessarily both User and Business or if it can or can’t be a Business. For it differs in such cases. Whether a User can only be…
-
0
votes1
answer111
viewsA: Complex filter with multiplications in the Django model
You can create an Aggregate function in your database first as specified in this answer CREATE AGGREGATE MUL(bigint) ( SFUNC = int8mul, STYPE=bigint ); Then you can create a function Aggregate that…