How to Use Regular Expressions

I need to identify a pattern in regex and save it in a variable, how to
No description
3 Replies
Michaelvips
Michaelvips8mo ago
Basic I need this, how to salve the output in a variable ?
No description
Michaelvips
Michaelvips8mo ago
Solved with this code: function extrairCPFDaString(texto) { const regexCpf = /\b\d{11}\b/; const resultado = texto.match(regexCpf); if (resultado) { const cpfEncontrado = resultado[0]; return cpfEncontrado; } else { return "CPF não encontrado no texto."; } } const texto = "CPF: 12234455566\nWhatsApp: +556791440690"; const resultadoExtracao = extrairCPFDaString(texto); return (resultadoExtracao);
No description
Baptiste
Baptiste8mo ago
Yep, good job!
Want results from more Discord servers?
Add your server