Tagged Questions
0
votes
2answers
2k views
JQuery - Remove part of string and keep the rest
I'm receiving multiple strings from a API and sometimes I have a string that looks like this.
first part <!-- Slut på Mall: variable --> second part
I want to use jQuery to exclude the part ...
2
votes
1answer
867 views
How to use string in Ruby variable name?
I have a string that I want to use as part of a variable name. Specifically, in Rails route paths:
<%= foo_path %>
<%= bar_path %>
I want the first part of the route name to be dynamic. ...