26文字ごとにスペースを強制するJavaScript関数があります
function nospaces(t)
{
if(t.value.match(/\S{27}/g))
{
//alert('Sorry, you can not enter a word more than 26 characters long');
t.value[5]=t.value.replace(/\S{27}/g,'');
}
}
今、ユーザーがスペースの代わりに入力する27文字ごとにスペースに置き換える必要があります