C # dev Gridcontrol "Time" string formatting

Source: Internet
Author: User
C # dev Gridcontrol "Time" string formatting

Public  void Formatedate (ref DataSet DS, String colname) {if (ds! = null && ds. Tables.count > 0 && ds. Tables[0]. Rows.Count > 0) {foreach (DataRow dr in DS. Tables[0]. Rows) {String columnvalue = Convert.ToString (Dr[colname]), while (Columnvalue.indexof (".") > 0) {columnvalue = Columnvalue.replace (".", "");} if (columnvalue.length >= 8) {Dr[colname] = string. Concat (New string[]{columnvalue.substring (0, 4), ".", Columnvalue.substring (4, 2), ".", Columnvalue.substring (6, 2)});}}}

Function Effect:

Before you bind the time to dev Gridcontrol, you can convert 20090212 of this format string into the 2009.02.12 format for easy use

Small bet

String.Concat method: A string representation of one or more instances of a string, or the value of one or more instances of Object, if the argument is not a string type, is first converted to a string using the string () function, and then the result of the transformation is computed. For specific explanations see: Click to open link

The above is the C # dev Gridcontrol "time" string format content, more relevant content please pay attention to topic.alibabacloud.com (www.php.cn)!

  • Related Article

    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.