Kod javascript:
function test() {
let czas = '12:14:38';
let re = new RegExp('([0-9]{2})\:([0-9]{2})\:([0-9]{2})','ig');
tmp=re.exec(czas);
if(tmp!=null) {
let obiekt_property = '';
for(j in tmp) obiekt_property += j + ' '+ tmp[j] + '';
alert(obiekt_property);
}
}
html:
<body onload="test()"></body>