How to match times with days using regular expressions in Python?
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
add a comment |
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
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
add a comment |
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
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
regex python-3.x
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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.
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
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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