jquery trim leading zeros from date of format 01/0

2019-05-21 06:14发布

问题:

How do I trim javascript date object returned as 01/26/2012 into 1/26/2012? it could be applicable for both month or days. So 01/01/2012 should be trimmed as 1/1/2012. Regular expression? jquery trim function? I am not sure how to go on this?

var date=date.replace(/^0+/, ''); 

or

var trimmed = s.replace(/\b(0(?!\b))+/g, "") 

回答1:

For a simple string operation, a RegEx can be used:

date = date.replace(/\b0(?=\d)/g, '')


回答2:

If it is indeed a date object format it.

Quick example (See it in action):

var today = new Date();
var today_string = (today.getMonth() + 1) + '/' + today.getDate() + '/' + today.getFullYear();
alert(today_string);

Either way, this is not a good use of regular expressions.



回答3:

Convert to a Date object first. http://www.w3schools.com/jsref/jsref_obj_date.asp

Javascript doesn't have built-in formatting functions for dates, but there are a lot of simple libraries that serve this need. Personal favorite: http://blog.stevenlevithan.com/archives/date-time-format