var str = 'Премьера, 19-й день, 20.01.17 22:45'; var out = str.replace(/.*,\s/,''); alert(out) out = str.match(/[^,]+$/); alert(out)