Так наверное будет понятнее.
Смысл этой задачи добавить ещё один столбец к существующей таблице.
Вот весь скрипт:
<script type="text/javascript">
function esli(x){
if(x[2]>x[3])
{return 1}
else
{return 0}
}
var a = "Мама мыла.Старший сын 4 2.Мама пришла 0 0.Щенок гавкал 6 8.";
reg = /([А-Яа-я]+)\s([А-Яа-я]+)(\s(\d+)\s(\d+))?\./g,
b = a.match(reg),
c = new Array;
for (i = 0; i < b.length; i++) {
c[i] = b[i].replace(reg, '$1,-,$2,$4,$5');
c[i] = c[i].split(/,/);
}
for (i = 0; i < c.length; i++) {
document.write(c[i] + '<br>');
}
/*m=new Array;
m=esli(c[i]);
for (i = 0; i<m.length; j++) {
document.write(m[i]+'<br>');
}*/
var i, j;
document.write("<table id=T1 border=1>");
for (i = 0; i < c.length; i++) {
document.write("<tr>");
for (j = 0; j < c[i].length; j++) {
document.write("<td>" + c[i][j] + "</td>")
}
document.write("</tr>")
}
document.write("</table>"+'<br>');
</script>