You could use getHours and getMinutes on the Date object.
var date = new Date();
var time = date.getHours() + ":" + date.getMinutes();
Now, you only need to substitute the value for date as it in my example is the current point of time and you're fetching it from a field.
You might want consider shortening your syntax as well. I'm not in front of the computer at the moment (not that computer, that is), but I believe that you can go like this instead.
var date = Xrm.Page.getAttribute("createdon").getValue();
It's amazing - no matter how much JavaScript one codes. Five minutes later, everything is gone from the mind. It's like if the syntax is intended to be memory resistant. :)
You should not be playing around with substring nor regex. JavaScript source code tends to be ugly and confusing the way it is already. No point making it worse and less comprehensible.
And as for the regular expressions - a programmer had a problem to solve. So he thought - "I know, I'll use RegEx". Then he had two problems.