python regex cheatsheet

  find string between characters   (?<=This is)(.*)(?=sentence) Regexr I used lookbehind (?<=) and look ahead (?=) so that “This is” and “sentence” is not included in the match, but this is up to your use case, you can also […]

adding google recaptcha to html form

find all your recaptcha info and statistics   https://www.google.com/recaptcha/admin     go to: https://www.google.com/recaptcha/admin/create when you register your recaptcha, you will get 2 codes. site key: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX secret key: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX   add the code to your: – header <script async […]