Regex not python. *\d$)' However, this is NOT what I am looking for.
Regex not python. Python regular expressions match end of word.
Regex not python – Apr 5, 2009 · In general it's a pain to write a regular expression not containing a particular string. NET regex does not support possessive quantifiers like ++, *+, ??, {1,10}?, see . Edit: I just finished and yes, it's: Aug 12, 2010 · That is, not-not-whitespace (the capital S complements) or not-carriage-return or not-newline. glob("*. The main benefit of non-capturing groups is that you can add them to a regex without upsetting the numbering of the capturing groups in the regex. This is also faulty practice in other programming languages. I could not specify what cannot precede "April" as that would require a negative lookbehind, which is not supported by Python's regex engine. To learn more about Python regular expressions, you can read various web pages. Why doesn't this work in 1 day ago · Source code: Lib/re/ This module provides regular expression matching operations similar to those found in Perl. regex to not allow Note the so-called "smart placement" of hyphens and square brackets that for a Python regex might be not that important, but is still a best practice in writing regexes. I am trying to figure out how to make it not match ANY . The below is the better practice. Python regex does not match. Python regular expressions match end of word. compile("^. match("G[a-b]. For a quick reminder, inside the Python interpreter, do: >>> import re >>> help(re) When you are "scraping" text from a web page, you might sometimes run afoul of HTML codes. All of these functions call the internal function _compile (including re. Earlier in this series, in the tutorial Strings and Character Data in Python, you learned how to define and manipulate string objects. How to return a string if a re. 13. Python v3 inconsistent regex match returns. Thanks Jun 1, 2017 · Specifically when does ^ mean "match start" and when does it mean "not the following" in regular expressions?. Aug 30, 2016 · What could be regex which match anystring followed by daily but it must not match daily preceded by m? For example it should match following string . Sep 30, 2011 · If there is a space (thats not in \w) then the \b before the b is true. 3' If I was only concerned with the string not ending with a numeric I could use: '^123(?!. We had to do this for models of computation - you take an NFA, which is easy enough to define, and then reduce it to a regular expression. Oct 4, 2023 · To use the negation operator, you place the ^ metacharacter immediately after the opening square bracket. ]. In this case, backreference 1 will contain the name of the variable. Note: at this point Python does not care whether or not '\' is a regular expression meta-character. a ba I know the regex should be ending with $ to mark the end, though I don't know what should preceed it. Multiline option (or inline (?m) modifier) with an Sep 12, 2011 · Whitespace anywhere in the string will cause the regex to fail. Viewed 1k times 0 . The python code you can use is: Mar 11, 2012 · Assuming you want the whole regex to ignore case, you should look for the i flag. Jul 16, 2013 · This is one of those things where I'm sure I'm missing something simple, but In the sample program below, I'm trying to use Python's RE library to parse the string "line" to get the floating-point Apr 7, 2012 · It works correctly (does not match) on filename. Apr 4, 2020 · The solution is to use Python’s raw string notation for regular expression patterns; backslashes are not handled in any special way in a string literal prefixed with 'r'. e the first and third string. )*$' input However, this approach has the disadvantage that it requires a backtracking regular expression engine. " Your first regex does this: \s\s May 23, 2014 · Regex: Not in a List - Python. Also, in Python regex you don't need to escape / since there are no regex delimiters there. Hence, some regex engines don't even support lookaheads/lookbehinds. Aug 14, 2021 · Need to match strings which don't start with a given pattern using a regular expression in Python? If so, you may use the following syntax to find all strings except ones which don't start with https: r"^(?!https). The following do not work: Mar 5, 2015 · Regular expression not matching in python. For example: In your Python code, to get _bbb, you'd need to use group(1) with the first regex, and group(2) with the second regex. */i string. RegEx can be used to check if a string contains the specified search pattern. IGNORECASE but self-contained. \-:]*\) but not the one where it is a year: (2001). search('. But that one in not working in python. Mar 14, 2024 · Regex or Regular Expressions are an important part of Python Programming or any other Programming Language. DOTALL does not stop the match at a new line. Regex for sequence of characters that is not equal to. compile('test', re. findall finds no match. It's good practice to formulate your conditions in a positive way and not in a negative. The \t matches the first \s, but when it hits the second one your regex spits it back out saying "Oh, nope nevermind. Mar 30, 2015 · Problem is that there are many non-alphabet chars strewn about in the data, I have found this post Stripping everything but alphanumeric chars from a string in Python which shows a nice solution using regex, but I am not sure how to implement it Sep 22, 2016 · See How to add modifers to regex in python? c#, . Delete line from file if matches regular expression. The problem of regex strings containing special characters in python. It is usually easier and more efficient to use a positive match to find the things you don't want, and then exclude those things with programming logic. 4. This regex works but fails for the first condition; it does not start with dot: Mar 11, 2013 · You could use something like this: import re s = #that big string # the parenthesis create a group with what was matched # and '\w' matches only alphanumeric charactes p = re. Python has a special sequence \w for matching alphanumeric and underscore when the LOCALE and UNICODE flags are not specified. Hot Network Questions Jun 18, 2018 · QUESTION: I am a beginner with python and using regex engine of python. *\d$)' However, this is NOT what I am looking for. I tried the following regex (?<!SCREEN). Document The re. Every time the above match method is called, the regular expression will be compiled. So you can modify your pattern as, So you can modify your pattern as, pattern = '^\w+$' Jul 2, 2016 · In python3, how do I match exactly whitespace character and not newline \\n or tab \\t? I've seen the \\s+[^\\n] answer from Regex match space not \\n answer, but for the following example it does no Oct 27, 2013 · There are a lot of pattern types that can match empty strings. The r"" bit means that the regular expression compiler gets the escape in \. So the output would be: barbar beachbar crowbar bar It works like a charm, even making sure not to touch classname when it's inside a string (The first portion of the regex tells it to make sure there are even number of quotes before-hand - it's a bit naive in that it will break with nested quotes, but I don't need to handle that case). Pip regular expression search. , the complementing ^ in the bracketed character class) with De Morgan’s law, this is equivalent to subtracting \r and \n from \s. I am pretty new to regex so will be great if I can get some help. Import the re module: When you have imported the re module, you can start using regular expressions: Search the string to see if it starts with "The" and ends with "Spain": Jul 1, 2018 · I want my Regex expression to pick up the string having the word "best" and not the word "mew", i. jpg. The /s _italic_means ANY ONE space/non-space character. Nov 30, 2012 · after some years it's time to answer that. Nearly all regex engines support it: /G[a-b]. (With the ^ being the negating part). But what if you want to find lines of code that don't contain a specific word? In this article, you will learn how to use regular expressions to exclude or negate matches. Examples: System == INVALID; SYSTEM == INVALID; system == INVALID; syStEm == INVALID; asd SysTem == Valid; asd System asd Jul 19, 2019 · For those coming here looking for a way to distinguish between Unicode alphanumeric characters and everything else, while using Python 3. This just helped me code the Control-Shift-Left/Right functionality in a Tkinter text widget (to skip past all the stuff like punctuation before a word). Mar 6, 2011 · Not sure how python does modifiers, but to edit in-place, use something like this (case insensitive): edit Note that some of these characters are utf8. ) Apr 17, 2020 · Python regular expression parentheses matching not returning the proper substring. Use your language of choice's split() method equivalent on the string with the word to negate as the argument for what to split on. DOTALL, re. Depending on your input you might want to either strip whitespace in the front and back of the string before passing it to the regex, or use add optional whitespace matchers to the regex like ^\s*(?!my)(\w+)\s*$. To use the literal representation your editor and language must support this, otherwise use the \u. . *$ and ^((?!mew). sub(), it will be much more efficient if you reduce the number of substitutions (expensive) by matching using [\W_]+ instead of doing it one at a time. Apr 22, 2014 · When your regex runs \s\s+, it's looking for one character of whitespace followed by one, two, three, or really ANY number more. In this tutorial, you’ll explore regular expressions, also known as regexes, in Python. Regex not working normally in python. as a special regular expression operator. ^[-+[:blank:][:digit:]]*$. compile is wasteful. regular expressions in python need to retain special characters. Now I want to reverse that condition, for example: 1234555 passes; 12322222 passess; None passess; 4321ZZZ does not pass; 43211111 does not pass; Please help me find the simplest regex as possible that accomplishes this. So r"\n" is a two-character string containing '\' and 'n', while "\n" is a one-character string containing a newline. in the regular expression this: \\. mdaily or; abcmdaily or; mdailyabc; I have tried following and other regex but failed each time: r'[^m]daily': But it doesn't match character instead of treating . info/Character class. I have tried combining ^(. IGNORECASE) In run time processing: Dec 21, 2012 · ) inside a regular expression in a regular python string, therefore, you must also escape the backslash by using a double backslash (\\), making the total escape sequence for the . Jan 12, 2023 · Regular Expression that does not match a given sequence. : Matches any character (except newline). Not in regular expression not working. The ^ means italic NOT ONE of the character contained between the brackets. For example, [^abc] matches any character that is not "a", "b", or "c". For example, with GNU grep: grep -P '^((?!hede). 0. In general, negative matches with regexes get quite complicated. b ab 1 This doesn't match. [^ ]+ and regular expression for anything but new line [^\n]+ (I'm on Windows). We will explore different techniques, such as using the caret symbol, negative lookaheads, and the pipe symbol, to help you filter out unwanted matches @nehem actually all of the regex functions in re module compile and cache the patterns. regex exclusion in python. Nov 5, 2015 · Python regex not matching at word boundary as required. I am trying Python's re module for the first time and am a bit mystified by the following behavior: if I use a pipe for 'or' in a regular expression, I only see that bit of the match returned. match. + but it seems not to work - selects all the lines. It is a 10-digit ISBN number and 'X' is valid for the final digit. Regex match that may or may not be there. regular-expressions. In the regular expression, a set of characters together form the search pattern. For example: String s = "foobar barbar beachbar crowbar bar "; I want to match if bar is not preceded by foo. The solution is to use Python’s raw string notation for regular expression patterns; backslashes are not handled in any special way in a string literal prefixed with 'r'. Regex not working with python. ', 'apple') \w: Matches any alphanumeric character and underscore (a-z, A-Z, 0-9, _). Here is how to do it using a simple loop comprehension: import glob res = [f for f in glob. Regex I have a file that includes a bunch of strings like "size=XXX;". Help With Particular Regular Expression - Not Containing Some String. It is used for searching and even replacing the specified text pattern. From Regular-expressions. This is because \n is not part of the . I have made a very basic regex for matching a phone number. Ask Question Asked 10 years, 5 months ago. *" Step 1: Match strings not starting with pattern. Regular expressions have two types of groups: Capturing groups; Non-capturing groups Mar 6, 2018 · The explicit way of saying "search until X but not including X" is: (?:(?!X). Jun 12, 2011 · [\W] matches (not (alphanumeric or underscore)), which is equivalent to (not alphanumeric and not underscore) You need [\W_] to remove ALL non-alphanumerics. *best). Aug 25, 2024 · So if you want to truly master regular expressions in Python, you’ve come to the right place. info: Negative lookahead is indispensable if you want to match something not followed by Dec 14, 2012 · How do I include an end-of-string and one non-digit characters in a python 2. NET regex matching digits between optional text with possessive quantifer is not working - When you match against a multiline string and use RegexOptions. regex flag: re. 0 not matching. Jan 21, 2011 · Is there an NOT operator in Regexes? Like in that string : " (2001) (asdf) (dasd1123_asd 21. +$")}) Dec 21, 2017 · I'd like to select a lines with does not contain a word SCREEN. May 6, 2013 · I have not been able to find a proper regex to match any string not ending with some condition. findall(regex, emailbody) # return the matches return substring Jan 10, 2016 · regex here. NOT matches. 2011 zqge) (dzqge) name (20019)" I want to delete all \ ( [0-9a-zA-z _\. BUT if there is another b then its false and then \bbrown does not match "bbrown" The regex brown would match both strings "quick brown" and "bbrown", where the regex \bbrown matches only "quick brown" AND NOT "bbrown" For more details see here on www. The first question: As you can see on Pythex, the str and date parts are recognized correctly, but the array part is not. Using a character class such as [^ab] will match a single character that is not within the set of characters. A regex is a special sequence of characters that defines a pattern for complex string-matching functionality. code in the character class (recommended). flags) # use search(), so the match doesn't have to happen # at the beginning of "big string" m = p. From the Wikipedia article and other references, I've concluded it means the former at the start and the latter when used with brackets, but how does the program handle the case where the caret is at the start and at a bracket? Jul 5, 2019 · However, I am not as versed as I would like to be in Regex to find a solution and I understand that this would not create correct results. RegEx do not match. daily; abcdaily; dailyabc; daily; But it must not match. For example, I don't want to match anything ending with an a. Python was also voted the #1 most loved language for the 5th year Python Regex All Alphabet unless "X" 0. match() checks for a match only at the beginning of the string, while re. This tutorial covers the basics of matching characters, classes, sequences, and repetitions in regex patterns. References Regular expressions are about matching characters, but they aren't as powerful when it comes to not matching characters. Python not recognizing regex. It is also known as the reg-ex pattern. Python: regular expressions word match. *$ type, and it is easy to modify it to prevent empty string matching by replacing * (= {0,}) quantifier (meaning zero or more) with the + (= {1,}) quantifier (meaning one or more), as has already been mentioned in the posts here. I've assume that "April" may: be at the beginning of the string, possibly followed by spaces; Jul 23, 2012 · I used this in python BeautifulSoup when trying to find tags which do not have an attribute that is empty. ), then the backslash and the escape character are replaced with the actual Unicode or 8-bit character. . Therefore there is absolutely no efficiency gain using compile and then match than just directly calling re. So what the regex should return must be: (2001) name. jpg files even if the file's name has 2 or more dots in it. I know I Oct 3, 2023 · I have a string, I just want to match substring for any character(s) except for space and new line. Share Improve this answer Sep 25, 2020 · python regex: pattern not found. Regular expression tester with syntax highlighting, explanation, cheat sheet for PHP/PCRE, Python, GO, JavaScript, Java, C#/. IN this example we have a list of URLs. Dec 1, 2012 · Note: this is only available in regex engines which implement the Perl 5 extensions (Java, Ruby, Python, etc) but not in "traditional" regex engines (including Awk, sed, grep without -P, etc. Observe also that I have constructed the regular expression in such a way that all capture groups begin and end with a word character (rather than with a space as shown in the question). Introduction to the Python regex non-capturing group. I am looking for whether the character immediately following my match string is not a numeric. An example using Python: May 8, 2011 · You can use negated character classes to exclude certain characters: for example [^abcde] will match anything but a,b,c,d,e characters. Python RegEx running past limiter. , the complementing ^ in the character class) with De Morgan’s law, this is equivalent to “whitespace but not carriage return or newline. Regex that allows blank or specific sequence. Match first parenthesis with Python. Both patterns and strings to be searched can be Unicode strings ( str) as well as 8- Aug 2, 2015 · I was wondering how to match a line not containing a specific word using Python-style Regex (Just use Regex, not involve Python functions)? Example: PART ONE OVERVIEW 1 Chapter 1 Introduction 3 I want to match lines that do not contain the word "PART"? Jan 5, 2008 · What I want to do is to perform the match where it matched the Regular Expression, but the match didn't contain any of the words given in the list? I can do this without regular expressions, but wondering if there was an inbuilt way in Python to do this. Jan 2, 2009 · As everyone has noted, if your regular expression engine supports negative lookahead, the regular expression is much simpler. The OP regex belongs to an ^. It worked well. regex match if not followed by pattern. [^\s-] also works. It's very different from my first answer, as it doesn't use regular expressions, so I decided to make a second answer post. In app initialization: self. info It should be mentioned that not using re. This regex seems to be not working in Python. pattern to also match newline. NET, Rust. Ask Question Asked 13 years, 11 months ago. Mar 18, 2011 · Python Regex match parenthesis but not nested parenthesis. May 10, 2012 · Just thought of something else that could be done. Dec 19, 2016 · Your python code has error, the haystack string contains "myarray" whereas your regex as "subarray" Unicode character classes as mentioned by @Casimir in the comments do not exist in re module, you can use [a-zA-Z] or \w accordingly as a replacement there. 3. Oct 22, 2012 · Python offers two different primitive operations based on regular expressions: re. compile) which does the caching to a python dictionary. Sep 26, 2011 · Perl (and other languages) allows for constructing really complicated-looking regular expressions that allows you to do exactly what you need to do in one big blobby-regex (or, as it may well be, with a short and snappy crypto-regex), but for the sake of whoever it is that needs to read (and maintain!) the code once you've gone you need to From the python documentation on regex, regarding the '\' character:. )* where X can be any regular expression. If the '\' is followed by a recognized Python escape character (t,n, etc. E. Python Regex to search for NOT and AND expression. Why doesn't it work? Jun 25, 2015 · It will not match, because there was a second number in there. For more information on regular expressions in Python, the two official references are the re module, the Regular Expression HOWTO. Example is below: # get first 'a' tag in the html content where 'href' attribute is not empty parsed_content. find("a", {"href":re. Modified 2 years, 6 months ago. Modified 10 years, 5 months ago. I can activate this with the dotall parameter. Python regular expression to extract the parenthesis. Python regex - Problems with start and end The regex [^-\s] works as expected. What should be regular expression for this? I know regular expressions for anything but space i. 2. Metacharacters Inside Character Classes The hyphen can be included right after the opening bracket, or right before the closing bracket, or right after the negating caret. Let’s dive in! The Rising Popularity of Regex Among Python Devs. The idea of the regex is that ^[a-z] -> Have to start with a letter \w+$ -> can contain multiple alphanumeric characters (\w is the shortcut for [A-Za-z_]) Bear in mind the regex flags i for insensitive and m for multiline. The expression for things not containing "cat" was about 80 characters long. Python has a built-in package called re, which can be used to work with Regular Expressions. DOTALL flag to 'extend' . With following code you should receive the desired output: def EventDescription(emailbody): regex = r'\d\d:\d\d\sDescription: (. RE_TEST = re. ” The easiest way would be to filter the glob results yourself. It matches ma and t and doesn't match bla. M The Python manual documents the re. beta. I am not able to figure it out how to club them together. *", "i") Check the documentation for your language/platform/tool to find how the matching modes are specified. g. Mar 30, 2020 · The approach I've taken was to specify what may precede "April" and why may not follow it. – Feb 15, 2022 · regex match and flag Regex can be done in-place, wrapping around the newline: Regex can be out-place, matching anywhere within the text irrespective of the newline, \n. But when I do that, the May 18, 2017 · But these would not match: '124' '1234' '1235. I tried using a look behind but python complains about not using a fixed width (which I'm not exactly sure what that means, but the file name will be variable length. net - . txt") if "abc" in f or "123" in f or "a1b" in f] for f in res: print f Mar 9, 2022 · Note that saving 'hello' to a capture group is really unnecessary because there will not be a match if 'hello' is not present in its required position. Python regex negation within regex. Hot Network Questions What "accident" in The Mill on the Floss is Robbie How do I write a regular expression to do this? Assume I have a flavor that allows lookahead, lookbehind, lookaround, and non-capturing groups. According to Stack Overflow’s 2022 developer survey, over 50% of Python developers now use regular expressions. Try Teams for free Explore Teams Feb 11, 2021 · You also can find the regular expression HERE, with the small sample string. So . 01. NOT operator for regex. Python regex does not match string as intended for some reason. Jul 10, 2023 · In Python, we use the re module to work with regex. Regex not working in python, but in online Dec 15, 2016 · Python offers two different primitive operations based on regular expressions: re. Since then Jul 18, 2014 · Regular expression not working in python. 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. If I try the same regex on someother tool for example text edit for regex search then its working. 1 day ago · Learn how to use regular expressions (regexes) in Python with the re module. Oct 25, 2012 · matching unicode characters in python regular expressions. 1. In your case, though, this might be overkill - here the easiest way would be [^z]* This will match anything except z and therefore stop right before the next z. Regex does not work in. the match fails). Jul 3, 2015 · This regex matches word substring and (?!@) makes sure there is no @ right after it, and if it is there, the word is not returned as a match (i. When it reads your regex it does this: \s\s+ Debuggex Demo. Let's write python code: What is a non-capturing group in regular expressions? 0. *)' substring = re. search(s) # search() returns a Match object with information about what was matched May 29, 2019 · Python Regular Expression Finding No Matches. Feb 11, 2022 · Note: Normally an asterisk (*) means "0 or more of the previous thing" but in the example above, it does not have that meaning, since the asterisk is inside of the character class, so it loses its "special-ness". When using re. And one more hint: without u modifier, \w matches [a-zA-Z0-9_], so you can write the Feb 4, 2014 · I need a regular expression that does not start with a dot or end with [-_. : Summary: in this tutorial, you’ll learn about the Python regex non-capturing group to create a group but don’t want to store it in the groups of the match. I am using a mongo regex but the regex object is build in python so please no python code here (like startswith) Ask questions, find answers and collaborate at work with Stack Overflow for Teams. Jun 3, 2010 · I'm banging my head against a wall with a regular expression. Jun 27, 2016 · That is, not-not-whitespace (the capital S complements) or not-carriage-return or not-newline. x, you can just use \w and \W in your regular expression. Regex, not statement. compile("name +(\w+) +is valid", re. I am able to match several sample regex patterns with my seed file but weirdly enough, I am unable to match lines in my sample May 10, 2013 · Regex in Python. Instead of specifying all the characters literally, you can use shorthands inside character classes: [\w] (lowercase) will match any "word character" (letter, numbers and underscore), [\W] (uppercase) will match anything but word characters; similarly, [\d Sep 12, 2023 · Regular expressions are a powerful tool for matching patterns in code. Regex pattern fails to Feb 16, 2012 · With regex in Java, I want to write a regex that will match if and only if the pattern is not preceded by certain characters. Why does this regex not match in Python? 1. re. Regular expressions and escaping special characters; regular-expressions. Oct 27, 2014 · You can use this regex: ^[a-z]\w+$ Working demo. ). To match a string which does not contain the multi-character sequence ab, you want to use a negative lookahead: Python regex not working in code. 6 regular expression set for searching? I want to find 10-digit numbers with a non-digit at the beginning and a non-digit or end-of-string at the end. Note that a REGULAR EXPRESSION does not return anything. , as shown in the examples above. Here are a few examples to illustrate how the negation operator works: - [^0-9]: Matches any character that is not a digit. MULTILINE | re. )*$ into the below expressions and the second regex one only ignores words if "mew" is present in the start of the string. Distributing the outer not (i. Python regex 'negative' pattern matching. So the demand that a RE should return false is not fulfillable if you nitpick. I know there is a form of 'If this then that' within Regex but I just cant seem to understand the online documentation I have found on the subject. I have a regex, for example (ma|(t){1}). e. I'm trying to define an expression that excludes exactly this text 'System' (case insensitive), but can contain the word 'System' providing it's not just that. Apr 15, 2013 · I am working on writing a regex for phonenumber. Jun 6, 2013 · Perform a positive regex on the line, and if it matches, discard the line. This matches. The (?i) makes the regex case-insensitive like re. Viewed 55k times Aug 14, 2020 · Regular Expression in Python 3. See also. I want to negate the regex, thus it must match bla and not ma and t, by adding something to this regex. sub(regular_expression, '', old_string) re substring is an alternative to the replace command but the key here is the regular expression. search() checks for a match anywhere in the string (this is what Perl does by default). instead of the python parser interpreting it. it's easier and shorter to do it that way, also the condition is positive. Jan 23, 2022 · import re regular_expression = r'[^a-zA-Z0-9\s]' new_string = re. symbol in the regular expression. *?quick[^z]* will match The quick fox jumps over the la.
fnkct usgez zxzzf bdoatf tfmy vvuqvg hfetujusy ipmiag zvhww wvnopr
{"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"}