Показать сообщение отдельно
  #3 (permalink)  
Старый 11.04.2022, 20:57
Аватар для ksa
ksa ksa вне форума
CacheVar
Отправить личное сообщение для ksa Посмотреть профиль Найти все сообщения от ksa
 
Регистрация: 19.08.2010
Сообщений: 14,217

Предложу такой вариант...
<textarea id='txt'>Or to take arms against a sea of troubles?
And by opposing end them. To die—to sleep
No more; and by a sleep to say we end.
The heart-ache and the thousand natural shocks
That flesh is heir to: ’tis a consummation!
Devoutly to be wish’d. To die, to sleep;
To sleep, perchance to dream—ay, there’s the rub:
For in that sleep of death what dreams may come
Borne on the bier6 with white and bristly beard:
Then of thy beauty do I question make</textarea>
<script>
let txt = document.querySelector('#txt').value
const re = /([^\n]*[!:;]\n){3}/
const n = txt.search(re)
txt = txt.substring(n, txt.length)
alert(txt)
</script>
Ответить с цитированием