I would like to know how to get the length of an input and replace everything between the values start and end but leave 2 chars and both ends.
I don't want to predefine the length as I want it to work on any input with any value and still be able to read the values with PHP when form submitted.
Input: Hello world street 12
Output: He*** ***** ****** 12
Input: 185445414631
Output: 18********31
Js lib: https://github.com/igorescobar/jQuery-Mask-Plugin
My code: https://jsfiddle.net/k4y0ctho/1/
if your output is acceptable on other field, this might be useful
$("#input").on("keyup", function() {
var input = $(this).val().split("")
var res = $.map(input, (el, ix) => {
return ix < 2 || ix > input.length - 3? el:"*"
})
$("#output").html(res.join(""));
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="password" id="input" />
<br><span id="output"></span>