Prev Demo
JavaScript
>
Matching End Characters
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <p>Click the below button to match 'ck' end of a string.</p> <input type="button" value="Click" onclick="mySearch()" /> <p id="myId"></p> <script> function mySearch() { var A = "crack jack trick"; var B = /ck$/g; //* Matches only at the end of the string *// var R = A.match(B); document.getElementById("myId").innerHTML = R; } </script> </body> </html>
Note: We DO NOT save your trial code in our database.
Output