Показать сообщение отдельно
  #25 (permalink)  
Старый 17.02.2017, 20:51
Аватар для Paguo-86PK
Профессор
Отправить личное сообщение для Paguo-86PK Посмотреть профиль Найти все сообщения от Paguo-86PK
 
Регистрация: 16.09.2009
Сообщений: 253

<style>
#start,#finish {
	color	: grey;
}
</style>
<script>
String.prototype.random = function(n) {
	var	c = "", s = "", z = 999;
	var	re = new RegExp(this);
	while(-- z && (!c.match(re) || (n -- && (s += c))))
		c = String.fromCharCode(Math.random() * 96 % 95 + 32);
	return	s;
}
String.prototype.module = function() {
	var	a = [],
		i = 0, j = 0,
		c,
		l = this.length,
		m = -1, k = -1;
	while(i < l) {
		for(j = 0; j < 128; a[j ++] = true);
		a[this.charCodeAt(j = i)] = false;
		while(a[this.charCodeAt(j + 1)])
			a[this.charCodeAt(++ j)] = false;
		if(m < j - i)
			k = i,
			m = j - i;
		++ i;
	}
	return	this.substr(k, m + 1);
}
//
function Print() {
	var	str = document.getElementById("cond").value.random(document.getElementById("wide").value);
	var	s = str.module();
	var	i = str.indexOf(s);
	document.getElementById("start").textContent = str.substring(0, i);
	document.getElementById("key").textContent = s;
	document.getElementById("finish").textContent = str.substring(i + s.length);
}
</script>
<body>
Ваш критерий
<input id=cond type=text value='[0-9_A-Z-a-z]' placeholder='Регулярное выражение' onChange='Print()' />
для
<input id=wide type=number min=1 max=96 value=48 onChange='Print()' /><a href='#' onmousemove='Print()'>Генерировать</a><br />
<span id=start></span><u id=key></u><span id=finish></span>
</body>

Последний раз редактировалось Paguo-86PK, 17.02.2017 в 23:53. Причина: Улучшил прототип генератора и добавил стиль
Ответить с цитированием