2

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, "") 
Anjana Sharma
  • 4,535
  • 5
  • 37
  • 51

3 Answers3

6

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

date = date.replace(/\b0(?=\d)/g, '')
Rob W
  • 341,306
  • 83
  • 791
  • 678
0

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.

Community
  • 1
  • 1
Jason McCreary
  • 71,546
  • 23
  • 135
  • 174
0

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

bgun
  • 99
  • 3