Skip to main content
28 events
when toggle format what by license comment
Sep 14, 2023 at 3:05 history bumped CommunityBot This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
May 10, 2023 at 1:03 history bumped CommunityBot This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Jan 7, 2023 at 20:05 history bumped CommunityBot This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Sep 7, 2022 at 22:02 history bumped CommunityBot This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
May 8, 2022 at 1:02 history bumped CommunityBot This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Apr 4, 2022 at 7:43 history edited Toto CC BY-SA 4.0
deleted 49 characters in body
Apr 3, 2022 at 20:00 history bumped CommunityBot This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Dec 3, 2021 at 2:05 history bumped CommunityBot This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Aug 3, 2021 at 16:06 history bumped CommunityBot This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Apr 1, 2021 at 3:03 history bumped CommunityBot This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Nov 30, 2020 at 8:05 history bumped CommunityBot This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Aug 1, 2020 at 12:01 history bumped CommunityBot This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Apr 3, 2020 at 4:04 history bumped CommunityBot This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Dec 5, 2019 at 4:00 history bumped CommunityBot This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Nov 1, 2019 at 7:02 history bumped CommunityBot This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Sep 30, 2019 at 10:46 answer added Toto timeline score: 0
Sep 30, 2019 at 4:04 history bumped CommunityBot This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
May 30, 2019 at 7:30 review Close votes
Jun 4, 2019 at 3:10
May 30, 2019 at 3:03 history bumped CommunityBot This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Jan 29, 2019 at 22:02 history bumped CommunityBot This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Feb 15, 2013 at 11:36 answer added wonea timeline score: 0
Feb 1, 2012 at 17:44 comment added TheSavo I think I may have found the answer my self. If it run the regex: ([0-9]+) , which leads with a space, and trails with a space will only find a number pattern that has a space in front and behind it. Since valid Code Numbers will have a decimal, this will only find, what would be the extra digits. I wrapped it in parens, and use a back reference, lead it with an underscore, and trail it with a space. '\1 ' So it will attach the extra digits to the parent, and delimit the whole string with a space. I then add and undersore to my regex pattern like so. "([0-9]+\.[0-9]+) "
Feb 1, 2012 at 16:39 comment added TheSavo The regex that I am using is listed, and highlighted. The list is space delimited, because it was copied from a webpage. In my example data sets, a valid CODE number shouldn't have a space in it. However my employer has made exceptions to that rule. Anytime there is a CODE number with a space, it typically has one space followed by two numbers. But there have been examples where it trailed with one or three digits. But those are even rarer.
Feb 1, 2012 at 16:39 history edited TheSavo CC BY-SA 3.0
added 8 characters in body
Feb 1, 2012 at 14:57 comment added EBGreen Also posting the exact regex that you are currently using will help us understand better what you are trying to do and where a fix might need to go.
Feb 1, 2012 at 14:54 comment added EBGreen If it is space delimited but the pattern needs to sometimes (but only sometimes) include spaces, then you will need to rigorously define when a space needs to be included and when it does not. If the definition is precise and accurate enough, then you could probably write a regex, but without that definition it isn't really possible to write one that would be 100% correct.
Feb 1, 2012 at 14:28 comment added Excellll The list is space delimited, yet you have codes that include spaces?
Feb 1, 2012 at 14:17 history asked TheSavo CC BY-SA 3.0