Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
RONALDO RODRIGUES DE OLIVEIRA
/
simec-scripts-banco
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
17d22340
authored
Apr 22, 2025
by
RONALDO RODRIGUES DE OLIVEIRA
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mascara para CPF no padrão LGPD
parent
023eabb2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
0 deletions
function_mascara_cpf_lgpd.sql
function_mascara_cpf_lgpd.sql
0 → 100644
View file @
17d22340
-- drop function if exists public.mascara_cpf_lgpd(TEXT)
CREATE
OR
REPLACE
FUNCTION
public
.
mascara_cpf_lgpd
(
in_cpf
TEXT
)
RETURNS
TEXT
AS
$$
DECLARE
clean_cpf
TEXT
;
result
TEXT
;
BEGIN
clean_cpf
:
=
regexp_replace
(
in_cpf
,
'[^0-9]'
,
''
,
'g'
);
IF
char_length
(
clean_cpf
)
<>
11
THEN
RAISE
EXCEPTION
'CPF inválido. Deve conter 11 dígitos.'
;
END
IF
;
result
:
=
substring
(
clean_cpf
FROM
1
FOR
3
)
||
'.XXX.XXX-'
||
substring
(
clean_cpf
FROM
10
FOR
2
);
RETURN
result
;
END
;
$$
LANGUAGE
plpgsql
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment