Answers for "regex ends with string"

1

regex contains string in end

/.*\.pdf$/
Posted by: Guest on July-13-2020
1

regex ends with string

$ is used to match the end of the string. and can be used like

"string"$
like

xyz$
if you want to end with xzy
Posted by: Guest on December-14-2020
0

regex start string

Start of String or Line: ^ 
By default, the ^ anchor specifies that the following pattern must begin 
at the first character position of the string.
Posted by: Guest on November-19-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language