Regular Expression is used to convert the date in MM/DD/YYYY format to the YYYY-MM-DD format, yyyyyyyy-mm-dd

Source: Internet
Author: User

Regular Expression is used to convert the date in MM/DD/YYYY format to the YYYY-MM-DD format, yyyyyyyy-mm-dd

The example of this article describes the regular expression to realize the MM/DD/yyyy format of the date to the YYYY-MM-DD format. Share it with you for your reference. The specific implementation method is as follows:

Copy codeThe Code is as follows:
<Html>
<Head> <title> Regular Expression </title> <Body>
<A href = "./"> back to list </a>
<Form action = "<? Echo $ PHP_SELF;?> "Method =" post ">
Enter a date in MM/DD/YYYY format:
<Input type = "text" name = "date" value = "<? Echo $ date;?> ">
<Input type = "submit" value = "convert to YYYY-MM-DD format">
</Form>
<? Php
If (isset ($ date )){
If (ereg ("([0-9] {1, 2})/([0-9] {1, 2})/([0-9] {4 })", $ date, $ regs )){
Echo $ regs [0]. "The conversion result is :". $ regs [3]. "-". $ regs [1]. "-". $ regs [2];
} Else {
The date format of echo "$ date is incorrect! <Br> ";
}
}
?>
</Body>
</Html>

I hope this article will help you learn regular expressions.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.