Can even be done in nicer way using regExp.
Main Topics
Browse All TopicsI have a long string.. I would like to write out this string with a break after every 4th character or so.
Example:
"123456789123456789"
it would need to be displayed:
"1234"
"5678"
"9123"
"4567"
"89"
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I believe it should be..
<html>
<script>
var SIZE = 4;
var SPACE ="<br>";
function addSpaces( obj ){
var reply="";
obj1 = obj.value.split("")
for (ind=0; ind<obj1.length; ind++){
reply += obj1[ind];
if ( (ind % SIZE) == 0){
reply += SPACE;
}
}
document.getElementById('o
}
</script>
<input type="text" value="1234123412341234123
<br>
<br>
<span id="output">
Change the text in the box to see output
</span>
<br>
</html>
Better Yet use this..
<html>
<script>
var SIZE = 4;
var SPACE ="<br>";
function addSpaces( obj ){
var reply="";
obj1 = obj.value.split("")
for (ind=0; ind<obj1.length; ind++){
if ( ind % SIZE == 0 && ind>0){
reply += SPACE;
}
reply += obj1[ind];
}
document.getElementById('o
}
</script>
<input type="text" value="1234123412341234123
<br>
<br>
<span id="output">
Change the text in the box to see output
</span>
<br>
</html>
The fixed one is:
<script>
var SIZE = 4;
var SPACE ="<br>";
function addSpaces( obj ){
var reply="";
for (ind=0; ind<obj.value.length; ind++){
if ( ind>0 && (ind % SIZE) == 0){
reply += SPACE;
}
reply += obj.value.charAt(ind);
}
document.getElementById('o
}
</script>
<input type="text" value="1234123412341234123
<br>
<br>
<span id="output">
Change the text in the box to see output
</span>
<br>
</html>
Nushi.
That what i suggested. to use regExp- one line of code as i commented above :-)
So the combined answer will be (with thanks to Zvonko):
<html>
<input type="text" value="1234123412341234123
<br>
<span id="output">
Change the text in the box to see output
</span>
</html>
Nushi.
Business Accounts
Answer for Membership
by: NushiPosted on 2006-07-07 at 11:13:40ID: 17060706
<html>
utput').in nerHTML=re ply;
4" onkeyup="addSpaces(this)">
<script>
var SIZE = 4;
var SPACE ="<br>";
function addSpaces( obj ){
var reply="";
for (ind=0; ind<obj.value.length; ind++){
reply += obj.value[ ind];
if ( (ind % SIZE) == 0){
reply += SPACE;
}
}
document.getElementById('o
}
</script>
<input type="text" value="1234123412341234123
<br>
<br>
<span id="output">
Change the text in the box to see output
</span>
<br>
</html>
Nushi.