Is there an easy way in jQuery to replace the last occurence of an '_' (underscore) in a given string?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
You don't need jQuery, just a regular expression. This will remove the last underscore:
This will replace it with the contents of the variable
|
|||||||||||||
|
|
Reverse the string, replace the char, reverse the string. Here is a post for reversing a string in javascript: How do you reverse a string in place in JavaScript? |
|||
|
|
|
No need for jQuery
to replace last char in a string
to replace last underscore or use one of the regular expressions you will get in a minute from someone :) |
|||||||||||||
|