To match any string with p at the end of it with JavaScript RegExp, use the p$ Quantifier.
Example
<html> <head> <title>JavaScript Regular Expression</title> </head> <body> <script> var myStr = "Welcome to our website! Welcome"; var reg = /me$/g; var match = myStr.match(reg); document.write(match); </script> </body> </html>