How to match times with days using regular expressions in Python?












0















It's the first time for me to put a question here and I'm a beginner in Python. I'd match times (hours and minutes) with days from a text. I wrote this expression for that:



(([0-9]+.?[0-9]+(a|p)m)[(Mon|Tues|Wednes|Thurs|Fri|Satur|Sun)day]?)


However, it matches times only without days. Can you help me please what the wrong with that expression is?
Many thanks










share|improve this question




















  • 1





    For regexes it i prudent to post the text you are looking into as well. How would we test otherwise

    – Patrick Artner
    Nov 27 '18 at 19:03
















0















It's the first time for me to put a question here and I'm a beginner in Python. I'd match times (hours and minutes) with days from a text. I wrote this expression for that:



(([0-9]+.?[0-9]+(a|p)m)[(Mon|Tues|Wednes|Thurs|Fri|Satur|Sun)day]?)


However, it matches times only without days. Can you help me please what the wrong with that expression is?
Many thanks










share|improve this question




















  • 1





    For regexes it i prudent to post the text you are looking into as well. How would we test otherwise

    – Patrick Artner
    Nov 27 '18 at 19:03














0












0








0








It's the first time for me to put a question here and I'm a beginner in Python. I'd match times (hours and minutes) with days from a text. I wrote this expression for that:



(([0-9]+.?[0-9]+(a|p)m)[(Mon|Tues|Wednes|Thurs|Fri|Satur|Sun)day]?)


However, it matches times only without days. Can you help me please what the wrong with that expression is?
Many thanks










share|improve this question
















It's the first time for me to put a question here and I'm a beginner in Python. I'd match times (hours and minutes) with days from a text. I wrote this expression for that:



(([0-9]+.?[0-9]+(a|p)m)[(Mon|Tues|Wednes|Thurs|Fri|Satur|Sun)day]?)


However, it matches times only without days. Can you help me please what the wrong with that expression is?
Many thanks







regex python-3.x






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 27 '18 at 19:22









Patrick Haugh

29.6k92749




29.6k92749










asked Nov 27 '18 at 18:52









Salim Al MandhariSalim Al Mandhari

32




32








  • 1





    For regexes it i prudent to post the text you are looking into as well. How would we test otherwise

    – Patrick Artner
    Nov 27 '18 at 19:03














  • 1





    For regexes it i prudent to post the text you are looking into as well. How would we test otherwise

    – Patrick Artner
    Nov 27 '18 at 19:03








1




1





For regexes it i prudent to post the text you are looking into as well. How would we test otherwise

– Patrick Artner
Nov 27 '18 at 19:03





For regexes it i prudent to post the text you are looking into as well. How would we test otherwise

– Patrick Artner
Nov 27 '18 at 19:03












1 Answer
1






active

oldest

votes


















2














The problem is within [(Mon|Tues|Wednes|Thurs|Fri|Satur|Sun)day]?, because as stated in www.regular-expressions.info:




Only parentheses can be used for grouping. Square brackets define a
character class, and curly braces are used by a quantifier with
specific limits.




So you need to change square brackets for parentheses:



((Mon|Tues|Wednes|Thurs|Fri|Satur|Sun)day)?


Your final regex should look like this:



(([0-9]+.?[0-9]+(a|p)m)((Mon|Tues|Wednes|Thurs|Fri|Satur|Sun)day)?)


I make some changes to improve it a little bit:



((d{1,2}:?d{1,2}(a|p)m)((Mon|Tues|Wednes|Thurs|Fri|Satur|Sun)day)?)


Where:





  • d its the same as [0-9].


  • {1,2} means that the preceding token should be present 1 or 2 times.


As a tip, you could use https://regex101.com to build your regular expressions and test them in place.






share|improve this answer
























  • Thank you for your answer. Itried it but it didn't work with my Mac. So, If I want to match time and day from this sentence: (Can you tell me the name of a movie which starts at 6.10pm on Thursday the 16th of August please?), it still matches time only without day.

    – Salim Al Mandhari
    Nov 27 '18 at 21:01













Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53506337%2fhow-to-match-times-with-days-using-regular-expressions-in-python%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









2














The problem is within [(Mon|Tues|Wednes|Thurs|Fri|Satur|Sun)day]?, because as stated in www.regular-expressions.info:




Only parentheses can be used for grouping. Square brackets define a
character class, and curly braces are used by a quantifier with
specific limits.




So you need to change square brackets for parentheses:



((Mon|Tues|Wednes|Thurs|Fri|Satur|Sun)day)?


Your final regex should look like this:



(([0-9]+.?[0-9]+(a|p)m)((Mon|Tues|Wednes|Thurs|Fri|Satur|Sun)day)?)


I make some changes to improve it a little bit:



((d{1,2}:?d{1,2}(a|p)m)((Mon|Tues|Wednes|Thurs|Fri|Satur|Sun)day)?)


Where:





  • d its the same as [0-9].


  • {1,2} means that the preceding token should be present 1 or 2 times.


As a tip, you could use https://regex101.com to build your regular expressions and test them in place.






share|improve this answer
























  • Thank you for your answer. Itried it but it didn't work with my Mac. So, If I want to match time and day from this sentence: (Can you tell me the name of a movie which starts at 6.10pm on Thursday the 16th of August please?), it still matches time only without day.

    – Salim Al Mandhari
    Nov 27 '18 at 21:01


















2














The problem is within [(Mon|Tues|Wednes|Thurs|Fri|Satur|Sun)day]?, because as stated in www.regular-expressions.info:




Only parentheses can be used for grouping. Square brackets define a
character class, and curly braces are used by a quantifier with
specific limits.




So you need to change square brackets for parentheses:



((Mon|Tues|Wednes|Thurs|Fri|Satur|Sun)day)?


Your final regex should look like this:



(([0-9]+.?[0-9]+(a|p)m)((Mon|Tues|Wednes|Thurs|Fri|Satur|Sun)day)?)


I make some changes to improve it a little bit:



((d{1,2}:?d{1,2}(a|p)m)((Mon|Tues|Wednes|Thurs|Fri|Satur|Sun)day)?)


Where:





  • d its the same as [0-9].


  • {1,2} means that the preceding token should be present 1 or 2 times.


As a tip, you could use https://regex101.com to build your regular expressions and test them in place.






share|improve this answer
























  • Thank you for your answer. Itried it but it didn't work with my Mac. So, If I want to match time and day from this sentence: (Can you tell me the name of a movie which starts at 6.10pm on Thursday the 16th of August please?), it still matches time only without day.

    – Salim Al Mandhari
    Nov 27 '18 at 21:01
















2












2








2







The problem is within [(Mon|Tues|Wednes|Thurs|Fri|Satur|Sun)day]?, because as stated in www.regular-expressions.info:




Only parentheses can be used for grouping. Square brackets define a
character class, and curly braces are used by a quantifier with
specific limits.




So you need to change square brackets for parentheses:



((Mon|Tues|Wednes|Thurs|Fri|Satur|Sun)day)?


Your final regex should look like this:



(([0-9]+.?[0-9]+(a|p)m)((Mon|Tues|Wednes|Thurs|Fri|Satur|Sun)day)?)


I make some changes to improve it a little bit:



((d{1,2}:?d{1,2}(a|p)m)((Mon|Tues|Wednes|Thurs|Fri|Satur|Sun)day)?)


Where:





  • d its the same as [0-9].


  • {1,2} means that the preceding token should be present 1 or 2 times.


As a tip, you could use https://regex101.com to build your regular expressions and test them in place.






share|improve this answer













The problem is within [(Mon|Tues|Wednes|Thurs|Fri|Satur|Sun)day]?, because as stated in www.regular-expressions.info:




Only parentheses can be used for grouping. Square brackets define a
character class, and curly braces are used by a quantifier with
specific limits.




So you need to change square brackets for parentheses:



((Mon|Tues|Wednes|Thurs|Fri|Satur|Sun)day)?


Your final regex should look like this:



(([0-9]+.?[0-9]+(a|p)m)((Mon|Tues|Wednes|Thurs|Fri|Satur|Sun)day)?)


I make some changes to improve it a little bit:



((d{1,2}:?d{1,2}(a|p)m)((Mon|Tues|Wednes|Thurs|Fri|Satur|Sun)day)?)


Where:





  • d its the same as [0-9].


  • {1,2} means that the preceding token should be present 1 or 2 times.


As a tip, you could use https://regex101.com to build your regular expressions and test them in place.







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 27 '18 at 19:19









Giovanni BenussiGiovanni Benussi

7771719




7771719













  • Thank you for your answer. Itried it but it didn't work with my Mac. So, If I want to match time and day from this sentence: (Can you tell me the name of a movie which starts at 6.10pm on Thursday the 16th of August please?), it still matches time only without day.

    – Salim Al Mandhari
    Nov 27 '18 at 21:01





















  • Thank you for your answer. Itried it but it didn't work with my Mac. So, If I want to match time and day from this sentence: (Can you tell me the name of a movie which starts at 6.10pm on Thursday the 16th of August please?), it still matches time only without day.

    – Salim Al Mandhari
    Nov 27 '18 at 21:01



















Thank you for your answer. Itried it but it didn't work with my Mac. So, If I want to match time and day from this sentence: (Can you tell me the name of a movie which starts at 6.10pm on Thursday the 16th of August please?), it still matches time only without day.

– Salim Al Mandhari
Nov 27 '18 at 21:01







Thank you for your answer. Itried it but it didn't work with my Mac. So, If I want to match time and day from this sentence: (Can you tell me the name of a movie which starts at 6.10pm on Thursday the 16th of August please?), it still matches time only without day.

– Salim Al Mandhari
Nov 27 '18 at 21:01






















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53506337%2fhow-to-match-times-with-days-using-regular-expressions-in-python%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Contact image not getting when fetch all contact list from iPhone by CNContact

count number of partitions of a set with n elements into k subsets

A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks