Print user input but add a new format or characters between the numbers ?
I want to input numbers and print them like in the example bellow.
Input: 0000000000
Print with format: *0*0*0*0*0*0*0*0*0*0*
I cant seem to figure it out with what i have read about formats in html.
If I can use something like: $(this).formatCurrency({ symbol: '*',
to add in * between the numbers.
Would really appreciate any help or tips!
What i have so far is this
enter code here
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<script language="JavaScript">
function showInput() {
document.getElementById('display').innerHTML =
document.getElementById("user_input").value;
}
</script>
</head>
<body>
<form>
<label><b>Enter a Message</b></label>
<input type="text" name="message" id="user_input">
</form>
<input type="submit" onclick="showInput();"><br/>
<label>Your input: </label>
<p>*<span id='display'></span>*</p>
</body>
</html>
html input printing
add a comment |
I want to input numbers and print them like in the example bellow.
Input: 0000000000
Print with format: *0*0*0*0*0*0*0*0*0*0*
I cant seem to figure it out with what i have read about formats in html.
If I can use something like: $(this).formatCurrency({ symbol: '*',
to add in * between the numbers.
Would really appreciate any help or tips!
What i have so far is this
enter code here
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<script language="JavaScript">
function showInput() {
document.getElementById('display').innerHTML =
document.getElementById("user_input").value;
}
</script>
</head>
<body>
<form>
<label><b>Enter a Message</b></label>
<input type="text" name="message" id="user_input">
</form>
<input type="submit" onclick="showInput();"><br/>
<label>Your input: </label>
<p>*<span id='display'></span>*</p>
</body>
</html>
html input printing
add a comment |
I want to input numbers and print them like in the example bellow.
Input: 0000000000
Print with format: *0*0*0*0*0*0*0*0*0*0*
I cant seem to figure it out with what i have read about formats in html.
If I can use something like: $(this).formatCurrency({ symbol: '*',
to add in * between the numbers.
Would really appreciate any help or tips!
What i have so far is this
enter code here
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<script language="JavaScript">
function showInput() {
document.getElementById('display').innerHTML =
document.getElementById("user_input").value;
}
</script>
</head>
<body>
<form>
<label><b>Enter a Message</b></label>
<input type="text" name="message" id="user_input">
</form>
<input type="submit" onclick="showInput();"><br/>
<label>Your input: </label>
<p>*<span id='display'></span>*</p>
</body>
</html>
html input printing
I want to input numbers and print them like in the example bellow.
Input: 0000000000
Print with format: *0*0*0*0*0*0*0*0*0*0*
I cant seem to figure it out with what i have read about formats in html.
If I can use something like: $(this).formatCurrency({ symbol: '*',
to add in * between the numbers.
Would really appreciate any help or tips!
What i have so far is this
enter code here
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<script language="JavaScript">
function showInput() {
document.getElementById('display').innerHTML =
document.getElementById("user_input").value;
}
</script>
</head>
<body>
<form>
<label><b>Enter a Message</b></label>
<input type="text" name="message" id="user_input">
</form>
<input type="submit" onclick="showInput();"><br/>
<label>Your input: </label>
<p>*<span id='display'></span>*</p>
</body>
</html>
html input printing
html input printing
asked Nov 23 '18 at 6:49
SimonSimon
62
62
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
You can use concat like below:
function showInput()
{
var inp=document.getElementById("user_input").value;
var hello='*';
for (var i = 0; i < inp.length; i++) {
hello+=inp[i].concat('*');
}
document.getElementById('display').innerHTML = hello;
}
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
</head>
<body>
<form>
<label><b>Enter a Message</b></label>
<input type="text" name="message" id="user_input">
</form>
<input type="submit" onclick="showInput();"><br/>
<label>Your input: </label>
<p><span id='display'></span></p>
</body>
</html>
add a comment |
You can loop through all of the numbers and insert a "*" at desired position with substr
var input = '000000000000000000000';
var newNumbers = input;
for (var i = 1; i < input.length * 2 - 1; i = i + 2) {
newNumbers = newNumbers.substr(0, i) + "*" + newNumbers.substr(i);
}
alert(newNumbers);
add a comment |
You could use split('')
to divide your input into single characters and join('*')
to insert a *
after each character:
function showInput() {
document.getElementById('display').innerHTML =
document.getElementById("user_input").value.match(/.{1}/g).join('*');
}
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
</head>
<body>
<form>
<label><b>Enter a Message</b></label>
<input type="text" name="message" id="user_input">
</form>
<input type="submit" onclick="showInput();"><br/>
<label>Your input: </label>
<p>*<span id='display'></span>*</p>
</body>
</html>
Or you use regex to get the same result:
function showInput() {
document.getElementById('display').innerHTML =
document.getElementById("user_input").value.match(/.{1}/g).join('*');
}
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53441865%2fprint-user-input-but-add-a-new-format-or-characters-between-the-numbers%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can use concat like below:
function showInput()
{
var inp=document.getElementById("user_input").value;
var hello='*';
for (var i = 0; i < inp.length; i++) {
hello+=inp[i].concat('*');
}
document.getElementById('display').innerHTML = hello;
}
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
</head>
<body>
<form>
<label><b>Enter a Message</b></label>
<input type="text" name="message" id="user_input">
</form>
<input type="submit" onclick="showInput();"><br/>
<label>Your input: </label>
<p><span id='display'></span></p>
</body>
</html>
add a comment |
You can use concat like below:
function showInput()
{
var inp=document.getElementById("user_input").value;
var hello='*';
for (var i = 0; i < inp.length; i++) {
hello+=inp[i].concat('*');
}
document.getElementById('display').innerHTML = hello;
}
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
</head>
<body>
<form>
<label><b>Enter a Message</b></label>
<input type="text" name="message" id="user_input">
</form>
<input type="submit" onclick="showInput();"><br/>
<label>Your input: </label>
<p><span id='display'></span></p>
</body>
</html>
add a comment |
You can use concat like below:
function showInput()
{
var inp=document.getElementById("user_input").value;
var hello='*';
for (var i = 0; i < inp.length; i++) {
hello+=inp[i].concat('*');
}
document.getElementById('display').innerHTML = hello;
}
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
</head>
<body>
<form>
<label><b>Enter a Message</b></label>
<input type="text" name="message" id="user_input">
</form>
<input type="submit" onclick="showInput();"><br/>
<label>Your input: </label>
<p><span id='display'></span></p>
</body>
</html>
You can use concat like below:
function showInput()
{
var inp=document.getElementById("user_input").value;
var hello='*';
for (var i = 0; i < inp.length; i++) {
hello+=inp[i].concat('*');
}
document.getElementById('display').innerHTML = hello;
}
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
</head>
<body>
<form>
<label><b>Enter a Message</b></label>
<input type="text" name="message" id="user_input">
</form>
<input type="submit" onclick="showInput();"><br/>
<label>Your input: </label>
<p><span id='display'></span></p>
</body>
</html>
function showInput()
{
var inp=document.getElementById("user_input").value;
var hello='*';
for (var i = 0; i < inp.length; i++) {
hello+=inp[i].concat('*');
}
document.getElementById('display').innerHTML = hello;
}
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
</head>
<body>
<form>
<label><b>Enter a Message</b></label>
<input type="text" name="message" id="user_input">
</form>
<input type="submit" onclick="showInput();"><br/>
<label>Your input: </label>
<p><span id='display'></span></p>
</body>
</html>
function showInput()
{
var inp=document.getElementById("user_input").value;
var hello='*';
for (var i = 0; i < inp.length; i++) {
hello+=inp[i].concat('*');
}
document.getElementById('display').innerHTML = hello;
}
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
</head>
<body>
<form>
<label><b>Enter a Message</b></label>
<input type="text" name="message" id="user_input">
</form>
<input type="submit" onclick="showInput();"><br/>
<label>Your input: </label>
<p><span id='display'></span></p>
</body>
</html>
answered Nov 23 '18 at 7:20
Aravind Bhat KAravind Bhat K
2741214
2741214
add a comment |
add a comment |
You can loop through all of the numbers and insert a "*" at desired position with substr
var input = '000000000000000000000';
var newNumbers = input;
for (var i = 1; i < input.length * 2 - 1; i = i + 2) {
newNumbers = newNumbers.substr(0, i) + "*" + newNumbers.substr(i);
}
alert(newNumbers);
add a comment |
You can loop through all of the numbers and insert a "*" at desired position with substr
var input = '000000000000000000000';
var newNumbers = input;
for (var i = 1; i < input.length * 2 - 1; i = i + 2) {
newNumbers = newNumbers.substr(0, i) + "*" + newNumbers.substr(i);
}
alert(newNumbers);
add a comment |
You can loop through all of the numbers and insert a "*" at desired position with substr
var input = '000000000000000000000';
var newNumbers = input;
for (var i = 1; i < input.length * 2 - 1; i = i + 2) {
newNumbers = newNumbers.substr(0, i) + "*" + newNumbers.substr(i);
}
alert(newNumbers);
You can loop through all of the numbers and insert a "*" at desired position with substr
var input = '000000000000000000000';
var newNumbers = input;
for (var i = 1; i < input.length * 2 - 1; i = i + 2) {
newNumbers = newNumbers.substr(0, i) + "*" + newNumbers.substr(i);
}
alert(newNumbers);
var input = '000000000000000000000';
var newNumbers = input;
for (var i = 1; i < input.length * 2 - 1; i = i + 2) {
newNumbers = newNumbers.substr(0, i) + "*" + newNumbers.substr(i);
}
alert(newNumbers);
var input = '000000000000000000000';
var newNumbers = input;
for (var i = 1; i < input.length * 2 - 1; i = i + 2) {
newNumbers = newNumbers.substr(0, i) + "*" + newNumbers.substr(i);
}
alert(newNumbers);
answered Nov 23 '18 at 7:21
PattePatte
603419
603419
add a comment |
add a comment |
You could use split('')
to divide your input into single characters and join('*')
to insert a *
after each character:
function showInput() {
document.getElementById('display').innerHTML =
document.getElementById("user_input").value.match(/.{1}/g).join('*');
}
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
</head>
<body>
<form>
<label><b>Enter a Message</b></label>
<input type="text" name="message" id="user_input">
</form>
<input type="submit" onclick="showInput();"><br/>
<label>Your input: </label>
<p>*<span id='display'></span>*</p>
</body>
</html>
Or you use regex to get the same result:
function showInput() {
document.getElementById('display').innerHTML =
document.getElementById("user_input").value.match(/.{1}/g).join('*');
}
add a comment |
You could use split('')
to divide your input into single characters and join('*')
to insert a *
after each character:
function showInput() {
document.getElementById('display').innerHTML =
document.getElementById("user_input").value.match(/.{1}/g).join('*');
}
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
</head>
<body>
<form>
<label><b>Enter a Message</b></label>
<input type="text" name="message" id="user_input">
</form>
<input type="submit" onclick="showInput();"><br/>
<label>Your input: </label>
<p>*<span id='display'></span>*</p>
</body>
</html>
Or you use regex to get the same result:
function showInput() {
document.getElementById('display').innerHTML =
document.getElementById("user_input").value.match(/.{1}/g).join('*');
}
add a comment |
You could use split('')
to divide your input into single characters and join('*')
to insert a *
after each character:
function showInput() {
document.getElementById('display').innerHTML =
document.getElementById("user_input").value.match(/.{1}/g).join('*');
}
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
</head>
<body>
<form>
<label><b>Enter a Message</b></label>
<input type="text" name="message" id="user_input">
</form>
<input type="submit" onclick="showInput();"><br/>
<label>Your input: </label>
<p>*<span id='display'></span>*</p>
</body>
</html>
Or you use regex to get the same result:
function showInput() {
document.getElementById('display').innerHTML =
document.getElementById("user_input").value.match(/.{1}/g).join('*');
}
You could use split('')
to divide your input into single characters and join('*')
to insert a *
after each character:
function showInput() {
document.getElementById('display').innerHTML =
document.getElementById("user_input").value.match(/.{1}/g).join('*');
}
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
</head>
<body>
<form>
<label><b>Enter a Message</b></label>
<input type="text" name="message" id="user_input">
</form>
<input type="submit" onclick="showInput();"><br/>
<label>Your input: </label>
<p>*<span id='display'></span>*</p>
</body>
</html>
Or you use regex to get the same result:
function showInput() {
document.getElementById('display').innerHTML =
document.getElementById("user_input").value.match(/.{1}/g).join('*');
}
function showInput() {
document.getElementById('display').innerHTML =
document.getElementById("user_input").value.match(/.{1}/g).join('*');
}
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
</head>
<body>
<form>
<label><b>Enter a Message</b></label>
<input type="text" name="message" id="user_input">
</form>
<input type="submit" onclick="showInput();"><br/>
<label>Your input: </label>
<p>*<span id='display'></span>*</p>
</body>
</html>
function showInput() {
document.getElementById('display').innerHTML =
document.getElementById("user_input").value.match(/.{1}/g).join('*');
}
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
</head>
<body>
<form>
<label><b>Enter a Message</b></label>
<input type="text" name="message" id="user_input">
</form>
<input type="submit" onclick="showInput();"><br/>
<label>Your input: </label>
<p>*<span id='display'></span>*</p>
</body>
</html>
answered Nov 23 '18 at 7:23
JnsJns
9381412
9381412
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53441865%2fprint-user-input-but-add-a-new-format-or-characters-between-the-numbers%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown