var str = "2013年11月5日上午9点"
var matches = str.match(/\d+/g);
var year = matches[0];
var month = matches[1];
var date = matches[2];
var hour = matches[3];
alert([year, month, date, hour].join('\n'));
var str = "2013年11月5日上午9点"
var matches = str.match(/\d+/g);
var year = matches[0];
var month = matches[1];
var date = matches[2];
var hour = matches[3];
alert([year, month, date, hour].join('\n'));