Posts by c-oliveira • 3 points
2 posts
-
0
votes1
answer110
viewsQ: Regex words in lowercase
I have a Regex that removes characters that are not letters or space for a Python application. Ex: var = re.sub('[^a-zA-Z \\\]', '', "abc Abc aBC cde123 def-ghi $?!123") Is returning: abc Abc aBC…
-
0
votes0
answers90
viewsQ: Problem when exporting Node.js function
I am a beginner in Node.js and I created an API that validates a CPF and returns a value true or false, but I am not able to send the return of this function to my other application. Follows code:…