Используйте JavaScript, чтобы заменить все символы звездочками.
//iVal is your string of characters (with asterisks).
iVal = iVal.substr(i).replace(/[S]/g, "*");
Используйте JavaScript, чтобы заменить все символы звездочками.
//iVal is your string of characters (with asterisks).
iVal = iVal.substr(i).replace(/[S]/g, "*");