admin管理员组文章数量:1344599
I have an excel spreadsheet that has 3 columns.
1st | 2nd | 3rd
----------------------------------------
xxxxxxxx x xxxxxxxx
When I copy all 3 of those cells and paste them into my textbox I get a value that looks likes this:
I need to eliminate the spaces, but what I have researched isn't working.
Here is what I have:
$(document).ready(function() {
$("#MyTextBox").blur(function() {
var myValue = $(this).val();
alert(myValue);
var test = myValue.replace(' ', '');
alert(test);
$("#MyTextBox").val(test);
});
});
When I alert test
it looks the exact same as the original and the value for MyTextBox
isn't being replaced.
I have a JSFiddle where I'm trying to replicate the issue, but in this instance, only the 1st space is replaced but the new value is populating into the textbox.
What am I doing wrong?
Any help is appreciated.
I have an excel spreadsheet that has 3 columns.
1st | 2nd | 3rd
----------------------------------------
xxxxxxxx x xxxxxxxx
When I copy all 3 of those cells and paste them into my textbox I get a value that looks likes this:
I need to eliminate the spaces, but what I have researched isn't working.
Here is what I have:
$(document).ready(function() {
$("#MyTextBox").blur(function() {
var myValue = $(this).val();
alert(myValue);
var test = myValue.replace(' ', '');
alert(test);
$("#MyTextBox").val(test);
});
});
When I alert test
it looks the exact same as the original and the value for MyTextBox
isn't being replaced.
I have a JSFiddle where I'm trying to replicate the issue, but in this instance, only the 1st space is replaced but the new value is populating into the textbox.
What am I doing wrong?
Any help is appreciated.
Share Improve this question edited Nov 15, 2017 at 15:07 Grizzly asked Nov 15, 2017 at 15:04 GrizzlyGrizzly 5,9539 gold badges61 silver badges115 bronze badges 4-
1
is this what you want jsfiddle/n0oot23g/1 ?
.replace(/ +/g, ' ')
will replace multiple spaces with only 1 – Carsten Løvbo Andersen Commented Nov 15, 2017 at 15:07 -
you need a regex, try:
myValue.replace(/\s/g, '')
.\s
is for space character nadg
will replace all spaces – n4m31ess_c0d3r Commented Nov 15, 2017 at 15:08 - @CarstenLøvboAndersen Thank you. I didn't even think to use regular expressions! Thank you! – Grizzly Commented Nov 15, 2017 at 15:14
- This link may help you : stackoverflow./questions/1981349/… – Meg Commented Nov 15, 2017 at 15:55
2 Answers
Reset to default 11I've changed your replace with a regex
. This removes all the spaces
$("#MyTextBox").blur(function(){
var myValue = $(this).val();
alert(myValue);
var test = myValue.replace(/\s/g, '');
alert(test);
$("#MyTextBox").val(test);
});
Using a regular expression would replace any number of spaces.
$(document).ready(function() {
var str = 'Your string';
var stringWithoutSpace = str.replace(/\s/g, '')
});
本文标签: javascriptHow To Remove Multiple Spaces from String jQueryStack Overflow
版权声明:本文标题:javascript - How To Remove Multiple Spaces from String jQuery - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743768890a2535754.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论