I am currently trying to learn a replace
method in jQuery.
I have a <div class="notes">
with the following text
(1 1 1 0 0 1 1)(1 1 1 0 0 1 1)(1 1 1 0 0 1 1)(1 1 1 0 0 0 0)(1 1 1 0 0 1 1)
and would like to replace the text with certain values. For example, each time I see )(
, I would want it to go to a new line (<br/>
). I was attempting to use jQuery's replace method to achieve this.
$(document).ready(function() {
var text = $('.notes').html().replace(")(", "<br/>");
$('.notes').html(text);
});
I noted that when doing this, it was only replacing the first instance. So I tried a replaceAll
method, although this had no effect on the string.
Quick fiddle Demo or snippet below:
$(document).ready(function() {
var text = $('.notes').html().replace(")(", "<br/>");
$('.notes').html(text);
alert(text);
});
<script src=".1.1/jquery.min.js"></script>
<div class="notes">
(1 1 1 0 0 1 1)(1 1 1 0 0 1 1)(1 1 1 0 0 1 1)(1 1 1 0 0 0 0)(1 1 1 0 0 1 1)
</div>
I am currently trying to learn a replace
method in jQuery.
I have a <div class="notes">
with the following text
(1 1 1 0 0 1 1)(1 1 1 0 0 1 1)(1 1 1 0 0 1 1)(1 1 1 0 0 0 0)(1 1 1 0 0 1 1)
and would like to replace the text with certain values. For example, each time I see )(
, I would want it to go to a new line (<br/>
). I was attempting to use jQuery's replace method to achieve this.
$(document).ready(function() {
var text = $('.notes').html().replace(")(", "<br/>");
$('.notes').html(text);
});
I noted that when doing this, it was only replacing the first instance. So I tried a replaceAll
method, although this had no effect on the string.
Quick fiddle Demo or snippet below:
$(document).ready(function() {
var text = $('.notes').html().replace(")(", "<br/>");
$('.notes').html(text);
alert(text);
});
<script src="https://ajax.googleapis./ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="notes">
(1 1 1 0 0 1 1)(1 1 1 0 0 1 1)(1 1 1 0 0 1 1)(1 1 1 0 0 0 0)(1 1 1 0 0 1 1)
</div>
Could anyone advise as to how I should go about this?
Share Improve this question edited Mar 23, 2016 at 14:41 jbutler483 asked Mar 23, 2016 at 14:30 jbutler483jbutler483 24.6k11 gold badges100 silver badges148 bronze badges5 Answers
Reset to default 4You need to use a regular expression instead which runs globally, notice the /g
mand.
For your case, you'll need to use the following:
/\)\(/g
$(document).ready(function() {
var text = $('.notes').html().replace(/\)\(/g, "<br/>");
$('.notes').html(text);
});
<script src="https://ajax.googleapis./ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="notes">
(1 1 1 0 0 1 1)(1 1 1 0 0 1 1)(1 1 1 0 0 1 1)(1 1 1 0 0 0 0)(1 1 1 0 0 1 1)
</div>
.replace()
is a String method and not a jQuery method, so a simple RegExp should do.
var text = $('.notes').html().replace(/\)\(/g, "<br/>");
Notice the g
mand that stands for global, which means it applies to all instances.
Here you go -
Here, /\(|\)/g
is a regex (regular expression). The flag g
means global. It causes all matches to be replaced.
$(document).ready(function() {
var text = $('.notes').text().replace(/\(|\)/g, "<br/>");
$('.notes').html(text);
alert(text);
});
<script src="https://ajax.googleapis./ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="notes">
(1 1 1 0 0 1 1)(1 1 1 0 0 1 1)(1 1 1 0 0 1 1)(1 1 1 0 0 0 0)(1 1 1 0 0 1 1)
</div>
a answer wihtout regex (split and join):
$(function() {
var notes = $('.notes');
notes.html(notes.html().split(')(').join(')<br/>('));
});
$(document).ready(function() {
$('.notes').html($('.notes').html().replace(/\)\(/g, '<br />'));
});