Perl regex alphanumeric only. +,/\"]*$".

Perl regex alphanumeric only. In fact I can use [:space:] only inside collections.
Perl regex alphanumeric only # The Guide. So to match a single space using this I have to use [[:space:]] Which is really strange. Perl regex tester is a free online tool to find if your regular expression is valid or not. Jun 25, 2010 · Your regex just needs little tweaking. y={aaabbc} Trial 0 $ echo 'x. Oct 22, 2013 · For your regular expression to match all alphanumeric values including spaces, you need to include for space inside your character class. Regular Expressions are provided under java. See it on rubular. Problem: I would like to keep only the alphanumeric characters within the {}. Trying to check input against a regular expression. In this case, the simpler s/\D+$//; can be used: perl -lpe "s/\D+$//" < in. I want to strip the special and non utf-8 characters. If you remove the use utf8 then none of the regular expressions match. Feb 12, 2014 · @DavidO yeah, Perl "word" sounds strange but with identifiers one might think that only the english alphabet and some decoration like '_' is matched and not something locale specific. On my registration page I need to validate the usernames as alphanumeric only, but also with optional underscores. Jan 14, 2013 · I'm working my way through Learning Perl, Chapter 9, "Processing Text with Regular Expressions. Username) I can only use Perl compatible Regex because I am using ColdFusion which uses that standard mostly. May 16, 2023 · in thread Perl Regex Match (Compare Only AlphaNumeric) Please consider this scenario. I am trying to kernel & gcc version by reading /proc/version file using Perl. perlre - Perl regular expressions #DESCRIPTION. For any string, here the task Apr 20, 2023 · Conventions used in the examples: The character 'm' is not always required to specify a perl match operation. You should also be using the bind operator =~ instead of = here. For example, /\w/ matches 'a' in "apple," '5' in "$5. I am unaware of any tools that use a regex pattern to generate strings. The hyphen is used to form ranges like A-Z, so if you want to match a literal hyphen, you either have to escape it with a backslash or move it to the end of the list. I'm a beginner to regex and would like to know what is wrong with my expression. jump123. This is a simple regex testers that can be used to roughly test regex patterns. For a description of how to use regular expressions in matching operations, plus various examples of the same, see discussion of m//, s///, qr// and ?? in Regexp Quote-Like Operators. # Simple word matching Mar 22, 2010 · In other words, the resulting list should exclude whatever items match the regular expression. Sep 20, 2010 · If you remove the use utf8 then none of the regular expressions match. For a description of how to actually use regular expressions in matching operations, plus various examples of the same, see m// and s/// in the perlop manpage. Because you get that one-time "yeah it works" and suddenly, when you need to change it you come right back with a different use-case, instead of actually learning what the regex does. matches(Regex), it will return true if the string is alphanumeric, else it will return false. That matches just one character which is neither an "alphanumunder" nor a PerlSpace. 2. In fact I can use [:space:] only inside collections. perlrequick - Perl regular expressions quick start #DESCRIPTION. Oct 22, 2013 · For your regular expression to match all alphanumeric values including spaces, you need to include for space inside your character class. Try Teams for free Explore Teams Jun 30, 2016 · Oh, your whole string can only have 7 numbers, and any number of alpha characters. ]+$ From beginning until the end of the string, match one or more of these characters. Jun 25, 2009 · Regular expression for allowing a user to enter alphanumeric characters and only one non-alphanumeric character 4 Regex to validate length of alphanumeric string Apr 8, 2017 · I have a string which has alphanumeric characters, special characters and non UTF-8 characters. Mar 18, 2016 · Considering you want to check for ASCII Alphanumeric characters, Try this: "^[a-zA-Z0-9]*$". And even then, there are quirks because of the historical implementations of the utilities standardized by POSIX. Apr 24, 2017 · Although, sometimes you will find that you need to escape the $ because of interpolation of perl internal globals. This page describes the syntax of regular expressions in Perl. " Here's two of the end-of-chapter exercises: Write a program to add a copyright line to all o Feb 25, 2010 · I have encountered some strange Perl behavior: using a Posix character class in a regexp completely alters the sort order for the resulting strings. I would however like to replace parts of a string befor printing it, as in This page describes the syntax of regular expressions in Perl. Jul 16, 2024 · Mudlet uses Perl Regular Expressions in a number of important ways. I can use \s outside of collections but have to use [:space:] inside of collections. ) Jan 3, 2023 · Regular Expressions or Regex is an API for defining String patterns that can be used for searching, manipulating, and editing a text. Can someone help with following: I need from a given string remove all non alphanumeric characters but excluding space, underscore and minus sign. Comment on Re^2: Perl Regex Match (Compare Only AlphaNumeric) In Section Seekers of Perl Wisdom Mar 17, 2014 · Possible Duplicate: Regular Expression for alphanumeric and underscores How to create a regex for accepting only alphanumeric characters? Thanks. But the testing is obviously far Oct 2, 2012 · i want to use the keyword 'KEYWORD' as my search string to extract the alphanumeric words before and after the search string using Perl regular expression. g. With the m, you can use any pair of non-alphanumeric, non-whitespace characters as delimiters. That's almost but not quite like saying it matches anything that is neither \p{Alphabetic} nor \p{Digit} nor the underscore (LOW LINE) nor \p{WhiteSpace}, except for the weaseling regarding chr 11, vertical tab, since that is not considered \s, although it is Apr 29, 2014 · Matches any alphanumeric character from the basic Latin alphabet, including the underscore. *?)"/' filename GNU grep. perlrequick - Perl regular expressions quick start. any character except newline \w \d \s: word, digit, whitespace Feb 25, 2011 · This simplifies handling suffixes and computing the length of the line, and is useful enough that perl provides the -l option to automate the process for one-liners. In formal language theory, regular expressions over some finite alphabet Σ are defined in the following way: • the regular expression ∅ denotes the empty set ∅ of strings, • the regular expression ε denotes the empty string, • for every a ∈ Σ, the regular expression a denotes the string a, May 16, 2023 · So I want to match that alphanumeric and take only the desired output. Nov 12, 2009 · ^[A-Za-z0-9_. / + , “ But when I test the pattern with a string "test_for_extended_alphanumeric" , the string passes the test. I am using this regular expression: "^[a-zA-Z0-9!@#$&()-`. I'm trying to match a regular expression in Perl. A character class is a way of denoting a set of characters in such a way that one character of the set is matched. util. This option will enable Perl-like regex, allowing you to use \K which is a shorthand lookbehind. However, the code below allows spaces. Mar 3, 2016 · I want to match "3 T1F ROHITE01WMILWWI16" which contains only caps letter and numbers nothing else. Jun 17, 2014 · Ask questions, find answers and collaborate at work with Stack Overflow for Teams. There isn't a simple rule for when to use which notation, or even which notation a given command uses. Equivalent to [A-Za-z0-9_] . – Dec 21, 2013 · The only characters that need to be escaped in a character class are \ , ] (and ^ unless you put it in the middle somewhere). Mar 6, 2014 · I'm using Perl to extract certain lines from a text file. I don't have Jan 5, 2015 · Regular expressions are used to define a syntax. sed ' # If the line contains /characters/, just to label repremove /characters/ b repremove # else, jump to end of script b # labels are introduced with colons :repremove # This s command says: find a quote mark and some May 26, 2012 · Match a single character that is a “word character” (letters, digits, and underscores) «\w» Or match regular expression number 3 below (attempting the next alternative only if this one fails) «\-\w» Match the character “-” literally «\-» Match a single character that is a “word character” (letters, digits, and underscores Apr 8, 2015 · @zygimantus Not this expression, no - since the total length could be split in multiple ways across the two(/three) parts of this expression. Of course, if you're using straight ASCII characters than any of the aforementioned regular expressions will work. +,/\"]*$". here's something to start with. Thanks in advance. Feb 11, 2011 · @Tim: I just told you: Marks, Connector Punctuation. If the string has any other characters than these it By default, the "^" character is guaranteed to match only the beginning of the string, the "$" character only the end (or before the newline at the end), and Perl does certain optimizations with the assumption that the string contains only one line. first character must be a letter (A, B, or C only) the remaining 4 characters can be number or le For maximum safety, I'd suggest using [0-9] any time you don't specifically intend to match all unicode-defined digits. Regex is used to match alias commands or to match incoming lines with triggers. If you know just a little about them, a quick-start introduction is available in perlrequick. 3. Now s/ will alter its parameter (the string) in place. Character classes. ^ and $ match the beginning (respectively the end) of a line, therefore your example would match only if those are the only words in the line. – David M. It will reset the match position, so anything before it is zero-width. (The source string is the string the regular expression is matched against. Unfortunately I am getting a blank line. Jan 11, 2020 · I have a Perl string that is only allowed to contain the letters A to Z (capital and lowercase), the numbers 0 to 9, and the "-" and "_" characters. The 'm' is only necessary if the user wishes to specify a match operation without using a forward-slash as the regex delimiter. But I am not sure but the regex to match the versions. Regular expression (alphanumeric) 35. txt > out. \n"; } else { print "Success. 1. 5], followed by only one underscore and ends with only digit. 28," and '3' in "3D. Perl and Java 7 both meet that spec, but many others do not. It's important to remember that: matching a character class consumes exactly one character in the source string. Also, \w is only Decimal Numbers and Letter Numbers; there are other numeric types it does not match. In triggers we can also capture this incoming data by surrounding the expressions in parentheses. Assume that there is a field for username with @elclanrs regex (first answer). The matching operations can have various modifiers, some of which relate to the interpretation of the regular expression Feb 4, 2022 · Note that the the content within {} are only an example, in reality it could be any value. I want to write a regular expression which validates whether the given string has only certain characters. Looking at this very relevant question, it looks like you probably want to use utf8 and check out Unicode::Semantics. Here are my questions: Can you reproduce this? Is this behavior intended? How can I capture the full number in the alpha-numeric context using a regex operation in perl? I have requirement to allow alphanumeric and certain other characters for a field. ? pattern? This operator is just like the m/ pattern / search, except it matches only once. It should not return true for all alphabetic and all nume The elementary regular expressions (for example, \a and \w) that are described in the preceding tables can match at most one substring at the given position in the input string. 4_25 in seprate condition. Any help much appreciated. Sep 27, 2019 · Regular Expression (Regex or RE) in Perl is when a special string describing a sequence or the search pattern in the given string. The condition is that it ,must be both. (I've had a lot of fun with classes like qr/[#@$]/ where perl wants to sub the patch level and blow away the end of the class definition. Here is a link to the PHP manual (It doesn't matter that it is the PHP manual, the Regex syntax is the same, I just like it because it explains well) on Perl compatible regular expression syntax; read the part about delimiters Jan 26, 2015 · You need to repeat your substitution multiple times to remove all non-alphanumeric characters. Initially, I thought the g "global" flag would do this, but I'm clearly misunderstanding something very central here. Regex uses special characters to match text which is probably best shown through some examples. The Perl's regex engine evaluates the given string from left to right, searching for the matc I'm looking for a php function that will take an input string and return a sanitized version of it by stripping away all special characters leaving only alpha-numeric. Thanks to kangshiyin for an early mention of this, and to Håkon Hægland for asserting it. And the contents of version is Jan 4, 2015 · I have following Perl script that should write OK if string contains only following characters a-z A-Z dash - underscore _ or dot . How could I express in regex like (pseudo-code follows): REFindNoCase('^[[:alnum:]\-]', ARGUMENTS. org May 16, 2023 · in thread Perl Regex Match (Compare Only AlphaNumeric) Please consider this scenario. @Greg, I enjoy how you explain your regex-related answers. POSIX recognizes multiple variations on regular expressions - basic regular expressions (BRE) and extended regular expressions (ERE). grep -Po "\\d+" filename -P Interpret PATTERNS as Perl-compatible regular expressions (PCREs). The field should only allow alphanumeric characters, dashes and underscores and should NOT allow spaces. Can only contain alphanumeric characters, and hyphens; all other characters are not allowed (including an underscore, which means I can't use the \W regex symbol) I've solved the first two in the list, but I'm having trouble figuring out how to check if a bash string contains only letters, digits, and hyphens. Mar 22, 2010 · In other words, the resulting list should exclude whatever items match the regular expression. For example, m/[^abc]/ could also be rendered as /[^abc]/. You probably need to use utf8;. If you have an improved version of grep, such as GNU grep, you may have the -P option available. The match and substitute operators check if a string matches a syntax pattern defined using a regex. Starts with alphabets [a-z|A-Z] followed by digits seprated by dot in between [1. So it would be come: x. XXX YXXXZZXX Data to get where X is always a digit, Y can be alphanumeric or missing, Z can be alphanumeric (specifically it can be A or a digit 0-9. Escaping regex pattern in string Only alphanumeric characters plus, period, underscore, hyphen are allowed. To fix it just remove the \ and you are there. Try adding the -r option to sed so it will recognize extended regular expressions Oct 18, 2015 · But I also want to allow hyphens through. (In Perl, for example, \h chooses to additionally include the MONGOLIAN VOWEL SEPARATOR. This page covers the very basics of understanding, creating and using regular expressions ('regexes') in Perl. I have a string which have its value with only alphanumerics & No spaces or new lines. In Perl, the operator s/ is used to replace parts of a string. To check if a string contains only alphabets and numbers in Perl, you can use a regular expression with the =~ operator. NB: The word 'the3' is left out because i'm only searching for alphanumeric words exactly before or after the 'KEYWORD'. The Perl's regex engine evaluates the given string from left to right, searching for the matc This page describes the syntax of regular expressions in Perl. I realize now that I need to also include, for the second (alphanumeric or underscore), a possibility that this could be a negative number (for instance -50). My code looks like the following: Perl regexp how to escape only some chars. – gented Commented Aug 21, 2020 at 10:43. Nov 25, 2012 · I need a regex for the following pattern: Total of 5 characters (alpha and numeric, nothing else). After regex is applied, these data should be: KENP KENP KENPX KENP Aug 15, 2016 · Your shorthand is only valid if using perl regex, if using POSIX regex, then Steven's solution is the shortest. As you want to put this named class into a character class, you have to enclose it with just another pair of [] : [[:alnum:]] May 28, 2013 · What regular expression can I use to remove all characters from the string starting at the first non-alpha character? Basically, I want to find the first non-alpha character and chop everything off after that regardless of char type. So I thought Jul 20, 2013 · I have a Perl script that matches lines that start with (alphanumeric or underscore), followed by any number of spaces, followed by another (alphanumeric or underscore). The allowed special characters are! @ # $ & ( ) - ‘ . y={aaa b . e non-ASCII) characters is kind of tough, and could depend on a lot of things. Regular expressions is my weak spot :( Thanks for your help. 2 Properties from UTS#18 Unicode Regular Expressions. I want to remove all non-matching characters from the string, leaving the rest untouched. Nov 11, 2014 · Since you had escaped the ? by preceding it with the \, the ? was no more acting as a regex meta-character ( for 0 or 1 repetitions) but was being treated literally. Thanks. Jul 31, 2019 · Regular Expression (Regex or Regexp or RE) in Perl is a special text string for describing a search pattern within a given text. When multiline is enabled, this can mean that one line matches, but not the complete string. I tried something like this /Linux version (\d+)*gcc version(\d+)*/ But its not working. preg_match uses Perl-like regular expressions, Aug 12, 2010 · A major benefit is that its definition is fixed in Annex C: Compatibility Properties of Unicode Regular Expressions and standard across all regex flavors that support Unicode. I do not want to touch non-alphanumericals at the beginning or end of the string. Oct 17, 2018 · I have a (probably very basic) question about how to construct a (perl) regex, perl -pe 's///g;', that would find/replace multiple instances of a given character/set of characters in a specified string. Apr 11, 2015 · For most purposes, [^\w\s] should suffice. Thanks May 29, 2023 · I have reason for that. They specify the portion of the label/identifier's address that should go into the register, since in RISC code you can't load the entire 32 bits in a single instruction. sample output: over123. Jan 10, 2020 · Also, need a regular expression to match the fixed format string XC1. line. You could do it more easily with the accepted answer (replace the + with e. This manual page discusses the syntax and use of character classes in Perl regular expressions. Matching international (i. You could have phrased the whole paragraph just like A 'word' character is any letter or digit or the underscore character. Aug 26, 2012 · I am pretty new to regular expressions. Edit: @OP, you have provided example string, but i am not really sure what you want to do with it. The matching operations can have various modifiers. The regular expression is trying to match any occurrence of 0o1Iil] (not 0o1Iil, because omitting a [at the beginning of the set will prevent the regular expression from seeing the ] as the character class metacharacter. txt Oct 11, 2011 · In perl I want to substitute any character not [A-Z]i or [0-9] and replace it with "_" but only if this non alphanumerical character occurs between two alphanumerical characters. This page assumes you already know things, like what a "pattern" is, and the basic syntax of using them. The modifiers which relate to the interpretation of the regular expression inside are listed Sep 27, 2019 · Regular Expression (Regex or RE) in Perl is when a special string describing a sequence or the search pattern in the given string. I need a second function that does the same but only returns alphabetic characters A-Z. A digit is just \d then. qr/ pattern /imosx. and FAIL if string contains any other character. See full list on geeksforgeeks. Regex in Perl is linked to the host language and is not the same as in PHP, Python, etc. Feb 20, 2017 · I am trying to replace any non-alphanumeric characters present in the first part (before the = sign) of a bunch of key value pairs, by a _: Input aa:cc:dd=foo-bar|17657V70YPQOV ee-ff/gg=barFOO D Note on using "b(. Jan 8, 2016 · The regex to match a Chinese (well, CJK) character is \p{script=Han} which can be appreviated to simply \p{Han} This assumes that your regex compiler meets requirement RL1. Syzdek This page describes the syntax of regular expressions in Perl. General Settings Mar 18, 2016 · Considering you want to check for ASCII Alphanumeric characters, Try this: "^[a-zA-Z0-9]*$". )d" for a regex pattern. length() < 80) before Aug 9, 2013 · No, the ha16(), hi16(), and lo16() modifiers are the LLVM assembler's dialect for what the GCC assembler uses: @ha, @hi, and @l. If you don't, see perlretut. However, operators that perform combining in typical regular expressions combine elementary metacharacters to create more complex patterns. Regex that will only allow alphanumeric characters and underscore and specific placeholder inside curly braces 12 Regular expression to match alphanumeric, hyphen, underscore and space string You can use Perl style regular expressions as well. perl -ne 'print "$1\n" if /name="(. so i am assuming you want to check whether a word is all letters, all numbers or something else. \n"; } Apr 8, 2010 · Perl supports POSIX character classes, so you can actually do this: $string =~ /^[[:alpha:]]+$/; $string =~ /^[[:alnum:]]+$/; Numbers are less well defined, but Scalar::Util's looks_like_number function may do what you want it to do. Either way, Steven's solution works for both perl and POSIX regex. It is widely used to define a constraint on strings such as a password. also read perldoc perlrequick. c}' | sed 's/[^[:alnum:]]\+//g' xyaaabc This is great, but I'd like to only modify the part within {}. An Assertion in Regular Expression is when a match is possible in some way. Mar 10, 2014 · [:alnum:] is only the name of the class. {1,80} for a line less than 80 chars); but that said regex is a poor tool for validating length, and if possible I'd just check it directly (e. If you haven't used regular expressions before, a tutorial introduction is available in perlretut. I am newbie to Perl. For a description of how to use regular expressions in matching operations, plus various examples of the same, see m// and s/// in perlop. -o Print only the matched (non-empty) parts of a matching line, with each such part on a separate output line. Your Quoting metacharacters Backslashed metacharacters in Perl are alphanumeric, such as "\b", "\w", "\n". Per perldoc perluniintro, Perl does not support using digits other than [0-9] as numbers, so I would definitely use [0-9] if the following are both true: Apr 4, 2013 · Does Perl's \w match all alphanumeric characters defined in the Unicode standard? For example, will \w match all (say) Chinese and Russian alphanumeric characters? I wrote a simple test script (see below) which suggests that \w does indeed match "as expected" for the non-ASCII alphanumeric characters I tested. Regexes without explanations, in my opinion, are kind of useless. Use this RegEx in String. Doing such a loop in sed requires a label and use of the b and t commands:. Sep 20, 2010 · Just use \p{L} which means "any Unicode letter" and works in Perl (/\p{L}/). The lines all start with and eleven character code like. Also, Alphabetic includes Other_Alphabetic; it is certainly not just Letters. ) There are three types of character classes in Perl regular expressions: the dot, backslash sequences, and the form enclosed in square brackets. May 25, 2011 · On my system: CentOS 5. regex package. In this case, with parens and dot, their special meaning is maintained. " To me it appears that the \d+ operator works differently in alpha-numeric context and just numeric context. All accents should be removed too - so only regular alphabet from A to Z (upper or lower case), numbers, space, underscore and minus sign. Edit: Note that ^ and $ match the beginning and the end of a line. Check out this example: For me this results in. The quantifier based regex is shorter, more readable and can easily be extended to any number of digits. Unlike some other regular expression languages, there are no backslashed symbols that aren't alphanumeric. . Is that correct? Assuming Perl (it looks like Perl regular expressions): Oct 19, 2012 · In theory you can use most non-alphanumeric characters as a delimiter. However, it writ Jul 25, 2015 · With the regex above, I was trying to remove all characters except alphanumeric characters and comma. Creates a precompiled regular expression from pattern, which can Sep 18, 2009 · 1st substring containing the alphanumeric value (in eg above it's "abc-456-hu5t10") 2nd substring containing the word (in eg above it's "High priority") 3rd substring containing * ( IF * is present at the end of the string ELSE leave it ) Regular Expression to . Oct 17, 2022 · The following regex matches alphanumeric characters and underscore: ^[a-zA-Z0-9_]+$ For example, in Perl: #!/usr/bin/perl -w my $arg1 = $ARGV[0]; # Check that the string contains *only* one or more alphanumeric chars or underscores if ($arg1 !~ /^[a-zA-Z0-9_]+$/) { print "Failed. try this: /[a-zA-Z]/ or /[[:alpha:]]/ otherwise, you should give examples of the strings you want to match. In this case an real time user can simply enter ---_ _ _ this in his username field and validation become passed which is toally wrong. diuva kyqblnk scgue rslt who opkfljke bvvg asy lpmx uyx
{"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"}