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 6141185
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T18:12:55+00:00 2026-05-23T18:12:55+00:00

I am parsing some date from a 3rd party source, unfortunately some are badly

  • 0

I am parsing some date from a 3rd party source, unfortunately some are badly formed. What would be the best way of cleaning/sanitising them?

E.g.

Wednesday 20July -> Wednesday 20July

Tuesday20 July -> Tuesday 20 July

once I’ve got these I’m just converting them using

DateTime myDateTime = DateTime.Parse("Wednesday 20 July");

What would be the best way to convert these malformed dates?

I did have a play with RegEx, but I’m no expert

Regex regEx = new Regex("[0-9][a-zA-Z]");
Match match = Regex.Match("Wednesday 20July", "[0-9][a-zA-Z]");

I wasn’t sure how to insert a space in the correct place once I had found a match.

  • 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-05-23T18:12:55+00:00Added an answer on May 23, 2026 at 6:12 pm

    You could insert a space between a digit and a letter (or between a letter and a digit) like this:

    resultString = Regex.Replace(subjectString, @"(?<=\d)(?=\p{L})|(?<=\p{L})(?=\d)", " ");
    

    (?<=\d) checks if the previous character is a digit.

    (?=\p{L}) checks if the following character is a letter.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm having difficulty parsing some JSON data returned from my server using jQuery.ajax() To
I am parsing some HTML source. Is there a regex script to find out
I've been given the arduous task of parsing some incoming UDP packets from a
I'm working with a 3rd party system to implement some forms in a website.
My application is receiving some date information from WMI. This in the form of
I need some help with parsing the response from ListDirectoryDetails in C#. I only
I'm getting started with parsing data and getting some structure from user supplied strings
I'm having some trouble with Java's Calendar. I'm parsing some data from a txt
I am pulling back some data from the twitter query API, and parsing it
I'm currently passing some date-time info to a web page using url parameters, which

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.