Blog

  • C# : Converting DateTime to format YYYY-MM-DDThh:mm:ssZ

    I found that lots of people were searching to convert the datetime into the universal format. Following can be used for the same.

    myDateTime.ToString(“u”)

    OR

    string strDate = DateTime.UtcNow.ToString(“yyyy’-‘MM’-‘dd’T’HH’:’mm’:’ss’Z’”, DateTimeFormatInfo.InvariantInfo);

    The custom format string is “yyyy’-‘MM’-‘dd HH’:’mm’:’ss’Z’”.

    Leave a Reply

    Your email address will not be published. Required fields are marked *

    This site uses Akismet to reduce spam. Learn how your comment data is processed.

  • Regex for AlphaNumeric password validation

    Regular Expression for validating the string

    (?!^[0-9]*$)(?!^[a-zA-Z]*$)^([a-zA-Z0-9]{8,20})$

    The above RegEx requires at least one digit and at least one alphabetic character. It does not allow special characters. The length must be from 8 to 20 characters.

    3 responses to “Regex for AlphaNumeric password validation”

    1. Charan Avatar
      Charan

      Superb guru!!!!!!

      1. Prasanna Avatar
        Prasanna

        thanks 🙂

    2. sr Avatar
      sr

      SuuAwesome !!!!!!!!!!!!

    Leave a Reply

    Your email address will not be published. Required fields are marked *

    This site uses Akismet to reduce spam. Learn how your comment data is processed.

  • Salesforce.com: What is Cloud Computing?

    [youtube=Salesforce]

    Awsome explanation of Salesforce working!

    Leave a Reply

    Your email address will not be published. Required fields are marked *

    This site uses Akismet to reduce spam. Learn how your comment data is processed.