Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7837663
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T14:46:52+00:00 2026-06-02T14:46:52+00:00

I was wondering if someone might be able to help me with this. I

  • 0

I was wondering if someone might be able to help me with this. I need to validate a text input from a textbox. I need to make sure it is in a format acceptable by a TimeSpan. The format expect should be hh:mm:ss:fff (i.e hours, minutes, seconds and milliseconds. e.g 15:30:45:040)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T14:46:59+00:00Added an answer on June 2, 2026 at 2:46 pm

    I’d mask the input for ##:##:##:### to make sure that you’re not getting alpha and special characters out of place.

    In order to make sure you’re dealing with a valid value on the backend, I’d look to TimeSpan.TryParse() to get you there. Look below.

    var val = "00:22:11:424";
    TimeSpan ts = new TimeSpan();
    TimeSpan.TryParse(val, out ts);
    

    Obviously the TryParse will deal with the exceptions, so you could use TimeSpan.Parse(val) and catch the Exceptions yourself if there was one to display to the user. You could also check the value of ts after the TryParse to make sure that the value is >= TimeSpan.MinValue…

    try
    {
       var val = "00:22:11:422";
       TimeSpan ts = new TimeSpan();
       ts = TimeSpan.Parse(val);
    }
    catch(Exception ex)
    {
       //do something...
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm a noob at this and was wondering if someone might be able to
Im wondering if someone might be able to help me with something that i
I was wondering if someone might be able to help me solve the Lotka-Volterra
I was wondering if someone could help me understand this problem. I prepared a
I might be asking too much, but I was wondering if someone could help
I was wondering if someone could help me get pointers to solve this problem.
I was wondering if someone could help me with the performance of this code
I was wondering if someone might be able to demonstrate how to use Type's
Wondering if someone could help me. I have next to no knowledge with Ajax,
Just wondering if someone could help me with a very simple SQL query. I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.