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 around this?
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 around this?
 
    
    You must escape the final / so the interpreter doesn't think it terminates the RegExp literal:
str.match(/\/$/);
 
    
    Use the escape character (\) to specify a literal / as in:
 str.match(/\/$/);
 
    
    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(/.*\/$/);
