最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

How to find last space of a string using JavaScript and replace it with ` `? - Stack Overflow

programmeradmin4浏览0评论

How to find last space of the para using JavaScript and replace it with  ?

<p class="no-space">Web Development Reading List</p>

(The space between the words "Reading" and "List" to be removed and want to have $nbsp; in place of that.

ie, Reading&nbsp;List

How to find last space of the para using JavaScript and replace it with &nbsp;?

<p class="no-space">Web Development Reading List</p>

(The space between the words "Reading" and "List" to be removed and want to have $nbsp; in place of that.

ie, Reading&nbsp;List

Share Improve this question edited Nov 16, 2015 at 11:38 Charlie 23.9k12 gold badges63 silver badges95 bronze badges asked Nov 16, 2015 at 11:10 BinuBinu 721 silver badge6 bronze badges 1
  • string.replace( /([^\s])\s+([^\s]+)\s*$/, '$1&nbsp;$2') – Quinn Keaveney Commented Nov 4, 2022 at 7:29
Add a ment  | 

2 Answers 2

Reset to default 9

Find your character by lastIndexOf() and use subStr to replace it through concatenation.

str = "Any string you want";
var lastIndex = str.lastIndexOf(" ");
str = str.substr(0, lastIndex) + '&nbsp' + str.substr(lastIndex + 1);

Use a replace with Regexp:

Using ID

var noSpace = document.getElementById("noSpace");
noSpace.innerHTML = noSpace.innerHTML.replace(/ (?=[^ ]*$)/i, "&amp;nbsp;");
<p class="no-space" id="noSpace">Web Development Reading List</p>

Using class name:

var noSpace = document.getElementsByClassName("no-space");
for (var i = 0; i < noSpace.length; i++) {
    noSpace[i].innerHTML = noSpace[i].innerHTML.replace(/ (?=[^ ]*$)/i, "&amp;nbsp;");
}
<p class="no-space">Web Development Reading List</p>
<p class="no-space">Web Development Reading List</p>
<p class="no-space">Web Development Reading List</p>

You can change &amp;nbsp; to "&nbsp;" if you need the character instead of the string.

发布评论

评论列表(0)

  1. 暂无评论