Regular Expression For A String That Ends With '/'
The regular expression for a string that ends with '/' is the following: str.match(//$/) -- javascript syntax but the // makes the compiler think it's a comment. how to work aroun
Solution 1:
You must escape the final /
so the interpreter doesn't think it terminates the RegExp literal:
str.match(/\/$/);
Solution 2:
You need to escape the slash:
str.match(/\/$/)
Solution 3:
Use the escape character (\
) to specify a literal / as in:
str.match(/\/$/);
Solution 4:
You'll need to escape the slash
str.match(/\/$/);
If you want to match a string that ends with slash, you may want to include the actual string too;
str.match(/.*\/$/);
Post a Comment for "Regular Expression For A String That Ends With '/'"