Tip: use Regex101 website to create your regular expressions :)
^\d{3}.\d{3}.\d{3}-\d{2}$
123.123.123-12
321.123.345-20
200.300.500-19
Replace [.-] with empty
^(\w+),\s(\w+)$
Melo, Joao
Wendel, Erick
Gomes, Rhaiany
Replace ^(\w+),\s(\w+)$
with {firstName: "$2", lastName: "$1"}
\[(.*?)\]\(([http|https].*?)\)
[Erick Wendel](https://erickwendel.com) faz palestras e você deveria seguí-lo lá no [Twitter](http://twitter.com/erickwendel_) ou até no [Instagram](https://instagram.com/erickwendel_)
Ah, e você pode também pesquisar no [Google](https://google.com) ou
[Yahoo](https://yahoo.com)
Vai que vai!
Replace \[(.*?)\]\(([http|https].*?)\)
with <a href="$2">$1</a>