Regex non capturing group. PHP Regexp Non capturing group not working.
Regex non capturing group. Regex Multiple Capture of Group.
Regex non capturing group Why is this group included in the final results? Why is this group included in the final results? I just want to get "o" instead. Using a capturing group when a non-capturing group would work just fine has 2 issues: It's computationally more expensive, since the regex engine has to keep track of the matched group (despite the fact that it doesn't need to) And the above expression disected in regex comment mode is: (?x) # enable regex comment mode ^ # match start of line/string (?: # begin non-capturing group (?! # begin negative lookahead ab # literal text sequence ab ) # end negative lookahead . Aug 18, 2010 · What you want to do is to grab the first group of the match result, surrounded by in the regex and the way to do this is to use the non-capturing group syntax, i. If not, then you are using parentheses for precedence control and can make the group non-capturing. Non-capturing groups can offer better performance as they don't store matches in memory. springframework. )+ and a replace string \1 will result in the string d Depending on the regular expression implementation you can use so called non-capturing groups with the syntax (?:…): ((?:a|b)c) Here (?:a|b) is a group but you cannot reference its match. The first capturing group (number 0) always The issue is not in capturing groups and non-capturing groups, the issue is trying to get an unset amount of variables for further use, using * for capturing groups will hardly ever yield the results you're looking for . If separator contains capturing parentheses, matched results are returned in the array. Regex look-ahead with non-capturing group not working as intended. But this regular expression matches only apple or banana if it’s preceded by 123-and followed by -456, or it matches the empty string if it’s preceded by 123-and followed by 456. One might say non-capturing grouping parentheses. Check the regex below. Nov 25, 2024 · Groups group multiple patterns as a whole, and capturing groups provide extra submatch information when using a regular expression pattern to match against a string. Parentheses group together a part of the regular expression, so that the quantifier applies to it as a whole. Regex Non-capturing group example. I also removed some unnecessary (IMO) groups. Extract capture group only from string. javascript regex match including non-capturing group. Sep 12, 2020 · Regex flavors that support named capture often have an option to turn all unnamed groups into non-capturing groups. To create a capturing group, you place part of the pattern in parentheses (). Aug 22, 2009 · Every regex flavor I know numbers groups by the order in which the opening parentheses appear. Groups[0] always refers to the whole match, so there will only ever be the one Capture associated with it. / foo /x matches the string "foo", while / foo / only matches " foo ". However, the regular expression with the non-capturing group (?:\\-\\d{4}) seems to capture the entire phone number and replace it. Apr 13, 2022 · Generally, consider iRon's helpful answer for robust HTML parsing with a dedicated parser. parenthesized expressions. TIF files only. Jan 8, 2024 · Non-capturing groups are important constructs within Java Regular Expressions. You're probably wanting to use a positive lookahead, which just asserts that the string must meet a criteria for the match to be valid, though that criteria is not captured. Backreferences refer to a previously captured group in the same regular expression. On the second match, the capturing groups I'm getting are: Nov 7, 2015 · Non-capturing groups don't "anti-capture" what they match and remove them from outer groups; they're just a way to group things together so you can apply quantifiers to them. Dec 19, 2018 · Your regex was almost correct except, you needed to do non-greedy capture in your id named group and change your regex to this, optional, non-capturing groups. The key observation here is that when you have either "apple" or "banana", you must also have the trailing hyphen, but you don't want to match it. com) will return just the id part of the email. Regex with Non-capturing Group. Hot Network Questions Oct 20, 2015 · I tried to test the performance of capturing and non-capturing group of the regex. So, long story short, which replace command do I have to use to go from:. Because you are using group 0, you are capturing the entire pattern, coincidentally the same as your non-capturing group. If you wish to Only match suppose B followed by A then you should use positive lookbehind like this. Captures. The second problem is that you are hard-coding an empty answer on the last two groups of the second option. However, non-capturing groups cannot be referenced later in the regular expression or in replacement strings. This is not something regex is generally used for. – Casimir et Hippolyte Non-capturing groups don't save the matches' value, while atomic groups disable backtracking if further combinations are needed. 1. Jul 9, 2015 · A non-capturing group doesn't prevent any substring to be in the whole match result. It only avoids to create a capture (a separate substring accessible with the group number). Hot Network Questions Sep 12, 2021 · A capturing group allows you to get a part of the match as a separate item in the result array. Regex with optional capture groups. web. Nov 8, 2024 · Performance Considerations. Regex returning uncaptured group instead of captured. The thing with capture groups is that they can later be referenced by referring to the capture group number, or if it is named, the name of the group. Replace ignore my non-capturing group? I am removing bracketed numbers that occur at the end of a filename, whether this is followed by 0, 1 or 2 extensions. The regex a(?>bc|b)c (atomic group) matches abcc but not abc. (?<=\[)), but these in turn prevent you from consuming the unwanted parts of the span. Non-Capturing and Capturing Groups - The right way. Text that's matched inside a non-capturing group is still consumed, the same as text that's matched outside of any group. The regular expression engine will try to fill the leftmost part of the pattern first. match returns capturing groups only without flag g. Match non-capturing group multiple times. exe, but the regex in general still does. Aug 5, 2020 · Remove the non-capturing group from your named group. Groups[0]. REGEX condition with non-capture groups. For example, to capture the id from the URI above, you can use the following regular expression with a capturing group that captures the \d+ part: Feb 17, 2012 · What is a non-capturing group in regular expressions? – Karl Knechtel. (?:foo) is a non capture group. 4. Aug 12, 2017 · You're using a non-capturing group. They create a sub-pattern that functions as a single unit but does not save the matched character sequence. Python Regex Capturing Group. The content, matched by a group, can be obtained in the results: The method str. And regarding the named group extension: Similar to regular parentheses, but the substring matched by the group is accessible within the rest of the regular expression via the symbolic group name name Non-Capturing Atomic groups are non-capturing, though as with other non-capturing groups, you can place the group inside another set of parentheses to capture the group's entire match; and you can place parentheses inside the atomic group to capture a section of the match. A person can have any number of first and middle names, but only one last name. It's unclear which regex dialect you're using, so I don't know if it supports either approach, but check out this regex comparison chart . However, I cannot remove _ from my capture group, because some languages coded in our system have _: simplified_chinese, for instance. nu/4. My problem is I dont want to capture all the groups, but the ?: symbol desnt seem to That indeed is working. *) produces the following capturing groups by number and by name. findall will always fetch a list of tuples once you define several capturing groups in the pattern, you can't use "regex-only" approach here. So far this is what I have: Function findTIFname(filestr As String) As Aug 29, 2012 · Why is the @ printed in the output, even though I'm using a non-capturing group (?:@)? Testing with: Python Regular expression Lookahead overshooting pattern. Assertions won't match any characters but asserts whether a match is possible or not. When applied to abc, both regexes will match a to a, bc to bc, and then c will fail to match at the end of Sep 27, 2023 · In a regex pattern, you can reference a capturing group by using a backslash followed by the group number. How do i do this with non capturing regex. I want to match all strings that don't contain an ABBA pattern. They capture the text matched by the regex inside them into a numbered group that can be reused with a numbered backreference. They allow you to apply regex operators to the entire grouped regex. Sep 12, 2021 · A capturing group allows you to get a part of the match as a separate item in the result array. It acts like the grouping operator in JavaScript expressions, and unlike capturing groups , it does not memorize the matched text, allowing for better performance and avoiding confusion when the pattern also contains Because the POSIX-based regex implementation does not seem to support non-capturing groups, and the captured groups of regex_substr are not readily available as separate columns, I went with the following, which basically uses a different regex for the optional group. It's helpful for when you're trying to separate the match into chunks. A non-capturing group groups a subpattern, allowing you to apply a quantifier to the entire group or use disjunctions within it. – user2357112 Commented Nov 7, 2015 at 15:43 Sep 30, 2015 · I'm attempting this challenge: https://regex. Capturing groups make it easy to extract part of the regex match. Sep 27, 2023 · In a regex pattern, you can reference a capturing group by using a backslash followed by the group number. What that will do is overwrite the container capture buffer 3 times leaving the last value captured within the capture group. . However, this is a rare scenario I believe, so you still can use your regex and grab the value inside capture group 1. You need to get appropriate Match to get rid of non-capturing groups. Capturing group (regex) Parentheses group the regex between them. Use re. . If you want to use grouping for splits but you don't want to include the split regex in the array, you must use non-capturing groups. a normal group it creates some sort of indexing that the regex engine can use for other checks later on if it has advanced stuff like tagging or recursion. Regex Multiple Capture of Group. +? non-greedy match of one or more characters followed by an opening parenthesis. In most cases, they follow the same policy of numbering by the relative positions of the Nov 13, 2024 · Non-Capturing groups doesn't means Non-Matching. You can't, because in order to exclude parts of the matching span of text you'd need look-around assertions (such as the negative look-behind assertions in your attempt, e. PHP Regex: group must end with character but do not capture this character. g. Oct 28, 2019 · Otherwise, the capturing group serves no purpose and a non-capturing group should be used instead. Jun 30, 2013 · This regex will return TESTER 75793250 since capturing a repeated group will only give you the last string it matches. Non-capturing Aug 18, 2010 · Groups that capture you can use later on in the regex to match OR you can use them in the replacement part of the regex. Group zero denotes the entire pattern, so the expression m. Where it gets interesting is with named groups. YES: YES: YES: YES: YES: YES Because even with non-capturing groups (?:…) the whole regular expression captures their matched contents. "Non-capturing" doesn't mean that the group isn't part of the match; it means that the group's value isn't saved for use in back-references. Non-capturing groups are really helpful then — you don't have to count all of your groups (only capturing ones). ?:. Parentheses groups are numbered left-to-right, and can optionally be named with (?<name>). Hot Network Questions Edit for clarification: The groups are numbered as follows: matches[0]: the entire matched group; matches[1]: the first captured group; matches[2]: the second captured group An easy way to tell which group it is is to count opening capturing group parentheses before the group. It's captured in $1 ( group 1 ) because there is no group prior to it. 1 day ago · Except for the fact that you can’t retrieve the contents of what the group matched, a non-capturing group behaves exactly the same as a capturing group; you can put anything inside it, repeat it with a repetition metacharacter such as *, and nest it within other groups (capturing or non-capturing). I basically want to ignore the final _. I expected both regular expressions to produce the same output, Phone number: [XXX-XXX-9412]. By placing ?: inside you specify that the group is not to be captured, but to group expressions. The part you're looking for is captured in group #1, so you should be using mc[0]. Is this result If you want a group to not be numbered by the engine, You may declare it non-capturing. IllegalArgumentException: The number of capturing groups in the pattern segment ([a-zA-Z]+(\s[a-zA-Z]+)*) does not match the number of URI template variables it defines, which can occur if capturing groups are used in a URI template #!/usr/bin/perl use warnings; use strict; use feature 'say'; say extract_number('abc 17 foo 42 more 999' ); # 42 say extract_number('bar 201 xyz 3 88' ); # 201 say Jun 11, 2009 · REGEX non-capturing group not working. That outer groups are numbered before their contained sub-groups is just a natural outcome, not explicit policy. Regex match but exclude character from capture group. I am removing bracketed numbers that occur at the end of a filename, whether this is followed by 0, 1 or 2 extensions. Jun 10, 2012 · Javascript regex non-capturing groups are returned. Dec 4, 2018 · (foo) is a capture group. For example, the group ($([\d,]+) in the regex below: Aug 5, 2018 · Python Regex: non capturing group is captured. Jun 13, 2010 · Non-capturing groups, usually: (?: blah), such that the group doesn't become part of the resulting group list, and the rest will remain in the expected order. group(0) is equivalent to m. (non-capturing parantheses and that aren't literal). You must think of each group: Group 1: Numbers, so \d. split. Match: aesthophysiology amphimictical baruria calomorphic Mar 4, 2011 · If you want to use spaces in your regex without them actually matching spaces, you need to use the x modifier on your regex. What are called non-capturing groups. compile with your patterns. (abc) {3} matches abcabcabc. Regex 正規表示法 - 群組與環顧 (Groups & Lookaround) Capturing Group ( ) 在 Regex 的 pattern 中,用小括號 ( ) 圈住的部分表示一個子樣式 (subexpression),也稱作是一個群組 (group)。 ( ) 有幾個用途: So i'm asking about using parentheses to do the grouping, but without capturing. This regex has no quantifiers. Besides, non-capturing groups serve documentation purposes: for someone who reads you code, a non-capturing group is an indication that you are not interested in extracting contents, you just want to ensure that it matches. lang. And regarding the named group extension: Similar to regular parentheses, but the substring matched by the group is accessible within the rest of the regular expression via the symbolic group name name #!/usr/bin/perl use warnings; use strict; use feature 'say'; say extract_number('abc 17 foo 42 more 999' ); # 42 say extract_number('bar 201 xyz 3 88' ); # 201 say Jun 11, 2009 · REGEX non-capturing group not working. Using Text Matched By Capturing Groups. A non-capturing group is a way to group a set of characters or expressions in a regular expression without capturing the matched text. Making a non-capturing group simply exempts that group from being used for either of these reasons. Regex non-capturing groups being captured. Non-capturing groups are great if you are trying to capture many different things and there are some groups you don't want to Jan 12, 2016 · (note that (?:) non-capturing groups only hamper the regex engine, the patterns inside will still match, consume characters), you won't get overlapping matches (if there is a timestamp right after the timestapmp). Feb 25, 2019 · But in the capturing groups, I want to get the array [123] or the string, but without the quotes asdasd. Using a non-capturing group means that no new group will be created in the match, not that that part of the string will be removed from any including group. Captures is equivalent to mc[0]. I. Sep 5, 2015 · Regex capturing group within non-capturing group. (?<foo>bar) is a named capture group, where the name is "foo". Jan 31, 2016 · Here in regex I have a non-capturing group (?:h). Non capturing group in regex not working as expected. Summary Use the regex non-capturing group to create a group but don’t save it in the groups of the match. For example, lets say you're parsing out people's full names. One thing still bothers me: If there are spaces behind any semicolon, the regex fails even so there are "\s*" patterns behind them to match whitespaces. python regex return non-capturing group-1. Apr 27, 2017 · As re. 2. *?, to match as few any chars as possible). Mar 25, 2016 · So, it seems the group is indeed being ignored for the group handling (since the first group is on the search pattern is &), but is still captured on the search pattern. So you can only reference the match of ((?:a|b)c) that is either ac or bc. Jun 5, 2015 · Your regex is not working as expected because it matches red with number 111. By the way, there is very slightly different between the capturing group and the non-capturing group. A non-capturing group does't necessarily imply it isn't captured at all just that that group does not explicitly get saved in the output. For example, the regular expression a(?:bc|b)c matches both abcc and abc (without capturing the match), whilst a(?>bc|c)c only matches abcc . 6. The other solution is to use positive lookahead instead of capturing group. Mar 2, 2013 · mc[0]. The following Aug 31, 2016 · It is a non capturing group. Jul 30, 2024 · A named capturing group is a particular kind of capturing group that allows to give a name to the group. In this tutorial, we’ll explore how to use non-capturing groups in Java Regular Expressions. Feb 19, 2017 · Regex returning a non-capturing group? Hot Network Questions 80-90s sci-fi movie in which scientists did something to make the world pitch-black because the ozone layer had depleted Mar 21, 2016 · The regex you use there contains a container capture group 4 that is quantified like this ( ){3}. Non-capturing groups also help you to write regular expressions that avoid unnecessary capture group overhead. Regex Expression Non Capturing Group. The correct way would be to capture and receive exactly what it is in each group, being the first group the integer value, the second group the dot and the third value the decimals. In contrast to capturing groups, non-capturing groups are marked by a special syntax that tells the regular expression engine not to store the matched text in a separate memory slot. How do I write a regular expression to do this? Assume I have a flavor that allows lookahead, lookbehind, lookaround, and non-capturing groups. 5. So the regex (\p{Alpha}*[a-z])(?:@example. Just do not put them into the that define the capturing: Mar 2, 2015 · Just turn the non-capturing group to positive lookahead assertion. Group numbers are assigned based on the order of opening parentheses in the regex pattern Nov 17, 2012 · Capturing/non-capturing does not refer to the entire regex, but to groups, i. What you are looking for is a look-behind zero-width assertion : Jul 27, 2011 · With VBA, I'm trying to use regex to capture the filename from a UNC path without the extension--looking at . You can reuse the Non-capturing group (?:[,;]|$) used as a delimiter (matches a single character in the list ,; (case sensitive) or $ asserts position at the end of the string Perl Code Sample: Non-capturing groups are useful when you want to create a group and apply quantifiers, alternations, or other operations to a group of patterns but you don’t want to capture them. Nov 6, 2024 · color= (?: red | green | blue) is another regex with a non-capturing group. NET regex: Nov 26, 2016 · I'm writing a simple shell in C under linux. Why is this happening? Nov 8, 2013 · REGEX non-capturing group not working. Groups[1]. For example, to capture the id from the URI above, you can use the following regular expression with a capturing group that captures the \d+ part: May 9, 2013 · Extensions usually do not create a new group; (?P<name>) is the only exception to this rule. alf. finditer to get all match data objects and get Group 2 contents from each match only: Jul 2, 2014 · Using non-capturing groups is useful for handling repeating patterns that you don't necessarily want to keep individually. Sep 26, 2015 · Why does Regex. The group's matching result can later be identified by this name instead of by its index in the pattern. Regex: (?<=f)(o+) Explanation: (?<=f) This will look for f to be present behind the following token but won't match. Another example: replacing string abcd with a regex (. util. Nov 18, 2019 · 正则表达式分组分为捕获组(Capturing Groups)与非捕获组Non-Capturing Groups。正则里面是用成对的小括号来表示分组的,如(\d)表示一个分组,(\d)(\d)表示 Aug 11, 2014 · Sometimes non-capturing is necessary such as for JavaScript's . It isn't included in the inner group, but it's still included as part of the outer group. May 8, 2023 · A simple regular expression pattern illustrates how numbered (unnamed) and named groups can be referenced either programmatically or by using regular expression language syntax. Moving on to the next level is a single inner group with which the outer group encapsulates, like this (( Nov 17, 2012 · Capturing/non-capturing does not refer to the entire regex, but to groups, i. NestedServletException: Request processing failed; nested exception is java. when you use ?: - non-capturing group - you're also grouping as well but it doesn't do any indexing. Do you want to. Feb 16, 2020 · I know that I could easily just wrap my SUBSTRING() with a REPLACE to replace the final _, but I'm trying to find a way to do it using regex to sharpen my regex skills. A non-capturing group looks like this: They are particularly useful to repeat a certain pattern any number of times, since a group can also be used as an "atom". May 9, 2013 · Extensions usually do not create a new group; (?P<name>) is the only exception to this rule. Group numbers are assigned based on the order of opening parentheses in the regex pattern Apr 12, 2017 · You really need to use non-capturing optional groups (like (?:)?), but besides, you also need anchors (^ to match the start of the string and $ to match the string end) and lazy dot matching patterns (. I was looking on how to use non capturing groups and saw this (?:<CONTEXT>(<WHAT_YOU_NEED_TO_GET>)<CONTEXT>), so I made my regex like so, but when I use OR ( | ), this doesn't work. Like i've seen the syntax (?:regex) for non-capturing groups, but it doesn't work in sed. May 4, 2018 · org. It's not the most elegant solution, but as long as there are no non-capturing groups in bash, the workaround with skipping a group each time is probably the best solution. For optimized regex operations, consider using re. Sep 21, 2011 · Actually, it's working perfectly. I'm trying to parse user input with POSIX regex with group capturing. Using Text Matched By Capturing Groups Capturing groups make it easy to extract part of the regex match. Note that the 2nd example given in @CB's answer is not minimal. PHP Regexp Non capturing group not working. You can use a non-capturing group to retain the organisational or grouping benefits but without the Jul 21, 2017 · In Full Match you get everything that regex says about, even non-capturing groups. See an example of how to extract the middle name from a string with non-capturing groups. The regular expression a(bc|b)c (capturing group) matches abcc and abc. If you do not want to match the text before the number, you can make use of the variable look-behind that is really great in . e. Aug 26, 2019 · According to the Pattern Javadoc, groups beginning with ?: are also non-capturing. The emphasis is on the word group here; the group does not capture the . Nov 14, 2017 · Non capturing group in regex not working as expected. 3. Apr 27, 2015 · Optional non capturing regex groups do always capture. Regular Expression Groups May 6, 2018 · Learn how to use (?:) syntax to define non-capturing groups that are not included in the result of a regular expression match. Sep 22, 2014 · Capturing groups are indexed from left to right, starting at one. group(). 0. python regex capture groups. Aug 10, 2014 · Capturing groups could be used later on in the regular expression as a backreference to what was matched in that captured group. Regex capture optional groups. So why do you use the non-capturing group anyway? the reason for using the non-capturing group is to save memory, as the regex engine doesn’t need to store the groups in the buffer. Regex flavors that support named capture often have an option to turn all unnamed groups into non-capturing groups. Try making the first group lazy: On the other hand, you don't really need a group for the second bit anyway, and can just capture up to the first - (with optional whitespace before it) and be done with it: Non-capturing groups make your regular expressions more efficient by reducing the amount of memory needed to store captured groups. Is this correct? Putting capturing groups within an expression is a useful way to both parse an expression and also as a form of organisation, allowing you to say that certain groups are optional or using the pipe operator to designate a choice inside a group. Feb 13, 2013 · A "non-capturing" group ( (?:regex) ) performs the grouping function but does not capture anything (and does not add to the list of captures). A capturing group is like a non-capturing group with extra functionality: in addition to grouping, it allows you to extract whatever it matches independently of the overall match. It is still captured as part of any enclosing groups. Sometimes it is necessary to have multiple matching, but alternating subgroups in a regular expression I think this tutorial explains what exactly "independent, non-capturing group" or "Atomic Grouping" is. The regular expression ((?<One>abc)\d+)?(?<Two>xyz)(. use backreferences? retrieve a specific portion of the entire match? (or multiple) If yes, then you will want capturing groups. You can not back reference it. First group matches abc.
jtmh pgjoboy majx uuctj qki mnxny tvqncsz nlyaz ngji ftrfp
{"Title":"What is the best girl
name?","Description":"Wheel of girl
names","FontSize":7,"LabelsList":["Emma","Olivia","Isabel","Sophie","Charlotte","Mia","Amelia","Harper","Evelyn","Abigail","Emily","Elizabeth","Mila","Ella","Avery","Camilla","Aria","Scarlett","Victoria","Madison","Luna","Grace","Chloe","Penelope","Riley","Zoey","Nora","Lily","Eleanor","Hannah","Lillian","Addison","Aubrey","Ellie","Stella","Natalia","Zoe","Leah","Hazel","Aurora","Savannah","Brooklyn","Bella","Claire","Skylar","Lucy","Paisley","Everly","Anna","Caroline","Nova","Genesis","Emelia","Kennedy","Maya","Willow","Kinsley","Naomi","Sarah","Allison","Gabriella","Madelyn","Cora","Eva","Serenity","Autumn","Hailey","Gianna","Valentina","Eliana","Quinn","Nevaeh","Sadie","Linda","Alexa","Josephine","Emery","Julia","Delilah","Arianna","Vivian","Kaylee","Sophie","Brielle","Madeline","Hadley","Ibby","Sam","Madie","Maria","Amanda","Ayaana","Rachel","Ashley","Alyssa","Keara","Rihanna","Brianna","Kassandra","Laura","Summer","Chelsea","Megan","Jordan"],"Style":{"_id":null,"Type":0,"Colors":["#f44336","#710d06","#9c27b0","#3e1046","#03a9f4","#014462","#009688","#003c36","#8bc34a","#38511b","#ffeb3b","#7e7100","#ff9800","#663d00","#607d8b","#263238","#e91e63","#600927","#673ab7","#291749","#2196f3","#063d69","#00bcd4","#004b55","#4caf50","#1e4620","#cddc39","#575e11","#ffc107","#694f00","#9e9e9e","#3f3f3f","#3f51b5","#192048","#ff5722","#741c00","#795548","#30221d"],"Data":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[6,7],[8,9],[10,11],[12,13],[16,17],[20,21],[22,23],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[36,37],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[2,3],[32,33],[4,5],[6,7]],"Space":null},"ColorLock":null,"LabelRepeat":1,"ThumbnailUrl":"","Confirmed":true,"TextDisplayType":null,"Flagged":false,"DateModified":"2020-02-05T05:14:","CategoryId":3,"Weights":[],"WheelKey":"what-is-the-best-girl-name"}