Escape character in swift. Ask Question Asked 5 years, 2 months ago.
Escape character in swift.
Apr 6, 2018 · Don't worry.
Escape character in swift I have tried many alternative ways. Aug 28, 2016 · Swift 3. Rather, they tell the computer to perform a certain function or command. The first is that to iterate over the characters of a string you must access the String. CSS Error. This means that different characters — and different representations of the same character — can require different amounts of memory to store. enclosed in double quotes, with all special characters properly escaped escaped. Ask Question Asked 9 years ago. Jan 12, 2024 · In a standard Swift string, the backslash \ is used as an escape character to insert special characters. extension Unicode. Also, you can construct the CharacterSet as a Set of single-character Strings: In Swift, backslash \is an escape character. com Extended grapheme clusters can be composed of multiple Unicode scalars. In escaped strings I'd always use the backslash-variant as it is cleaner and probably more performant. Compare Two Strings. 1 Swift : Wrong character in String. dataUsingEncoding(NSUTF8StringEncoding) self. 3 Encoding JSon before serialization swift . Sigils can be wrapped by many different characters so unless you use all of them you should find one, which isn’t problematic: Syntax reference — Elixir v1. 7. In swift 1. Modified 9 years, 2 months ago. I have tried adding it as part of the header but after testing on postman and in the app I have determined the url needs to be passed in via the request body. alphanumerics it will encode some characters that do not need to be encoded (like -, . I specifically am wondering how you could escape a See full list on theswiftdev. Now onto your question the problem is the return type of your closure: "%20" is a String, $0 is a Character. ×Sorry to interrupt. First, to bring Swift into line with many other C-style languages where there is a separate syntax for Strings and their constituent atoms (in Swift's To get a particular character at a specific index of a string, we'll have to use the String's index(_,offsetBy:) method and then subscript. It makes an escape sequence. All escape sequences begin with an escape character. Note that by using . Feb 1, 2022 · and wrap the result of the serialization in square brackets. Scalar { var hexa: String { . isNewline // true Character("a"). myCharacter. If the value contains both a semicolon and a double-quote character, the value can be enclosed in single quotation marks. Invalid JSON while parsing \n (quoted) string. For instance, when you want to include a quotation mark within a string, you escape it like These escape sequence characters are used inside the string as shown in the below syntax −. For example, suppose I have this: Dec 3, 2018 · Is there a functional equivalent in Swift to Scala's Raw String or the verbatim string literal in C#? Sample raw string without escape characters (not syntactically correct): val secretKey = """long\^578arandom&61~8791escaped&*^%@(chars""" I've tried briefly gripping through the language docs but haven't found a functional equivalent yet. The backslash gets processed as a character escape in addition to its role in string interpolation in Swift. Feb 14, 2022 · For Swift 5 or later you can avoid needing to escape backslashes using the enhanced string delimiters: let backSlashSpace = #"\ "# If you need String interpolation as well: Nov 2, 2017 · Thanks. The String class in Swift provides various built-in functions that allow us to perform different operations on strings. . However, since 1F170 has five digits you can't use a \uXXXX escape sequence (which only accepts four hexadecimal Jan 9, 2017 · You've added a bunch of shell-escapes when you're not passing this to a shell. There are no escape characters involved. And the code starts looking for \ instead of \ -_- Jan 3, 2019 · When you use # with a string it affects the way Swift understands special characters in the string: \ no longer acts as an escape character, so \n literally means a backslash then an “n” rather than a line break, and \(variable) will be included as those characters rather than using string interpolation. These lines convert the dictionary to JSON and prints the raw data. In a standard Swift string, the backslash \ is used as an escape character to insert special characters. The json reply from the url contains many greek letters and for example instead of "Γ" I get "\U0393". 0. Ask Question Asked 9 years, 9 months ago. So it will check for the next character just after your single backslash. The book is available as a digital download for just $39. Escape Character in URL - iOS Swift. prettyPrinted) let decoder = JSONDecoder() decoder. @IBAction func SendCommand(sender: AnyObject) { var test = (self. Create a string containing quotes Mar 13, 2018 · The resulting code being called includes the escape characters. If you try to print only a single backslash, there is no character after that escape character. let o6 = try JSONSerialization. keyDecodingStrategy Dec 5, 2022 · I'm trying to figure out how to remove the backslash "\" escape character in an array of strings, for words with an apostrophes. Here is a rendition implemented as an extension: Oct 27, 2017 · I have a project in swift where I post a URL and get the result in json. This is just a closure passed as an argument to a function, and map just happens to be a function which has a closure parameter. Since the backslash is used to escape other characters, it needs a special escape to actually print itself. We use the == operator to compare two strings. How I can translate the escape characters in swift? My code is the following: let url = NSURL(string: "https://www. In Swift 2. As an alternative, you can check that the first character of a string is an ASCII character (using Character's isASCII property) then get the numeric representation of its first Unicode scalar (using Unicode. Swift 2. 16. May 6, 2019 · BTW - That's a private use area character so unless you have a special font that uses that character, don't expect to see much. So how do I print some text and not add a newline to it since swift no Apr 28, 2021 · String Operations. For production code, the best methods to escape a URL string are in the URLComponents struct. The second is that the append method doesn't return anything so you should remove the newStr. The only difference between your two solutions is, that the latter works in escaped strings (one double-quote, escape sequences supported) and also in raw strings (three double-quotes, escape sequences do not work). docx', with the extra '. docx'" In this context, this literally mean '*. – Jun 4, 2011 · It's better to not do it yourself, but if you so desire, OWASP recommends that "[e]xcept for alphanumeric characters, [you should] escape all characters with ASCII values less than 256 with the &#xHH; format (or a named entity if available) to prevent switching out of [an] attribute. text) but that did not help. Escape sequences in Swift are special characters that are used to represent non-printable characters or to include special characters in a string. Using Unicode. Using Character's isASCII property and Unicode. If you want a double backslash in the string you need to have four backslashes in your code. Example: Character("\n"). How exactly you formed the string (in this case from a string literal with an escape sequence in source code) is not retained (it is only available in the source code, but not preserved in the resulting program). Sample projects that use the code shown in the chapters. In addition, documentation for the applyingTransform(_:reverse:) method would need to be updated to note support for the \N escape sequence in Swift. isNewline For complete list check Inspecting a Character section in Character docs. Generate Escape Block : if the escape kind is escapeBlock , define when escaping is used during serialization. I know how to use escape in a string "\"", but can't Jul 5, 2010 · And second, that's already been answered: To include values that contain a semicolon, single-quote character, or double-quote character, the value must be enclosed in double quotation marks. But I have deadline and a server that does not like the escape character. isNewline Mar 11, 2020 · Learn everything you need to know about Swift Concurrency and how you can use it in your projects with Practical Swift Concurrency. As a result of the Great Swiftification of the old APIs, the factory method is now called trimmingCharacters(in:). iso8601 decoder. Swift Format string by padding left withspaces Apr 22, 2020 · body = %{password: “my\Password”} body = %{password: ~S(my\Password)} and you don’t need to escape the backslash. max, with replacement: (Regex<Output>. dateDecodingStrategy = . Viewed 8k times 2 . In other words, you need to escape the escape character. the JSONEncoder APIs must be changing to allow this? People will shout "the JSON standard allows escaping". Hence the 4 backslashes. Jul 28, 2024 · (Unicode-aware mode only) Represents the character with the given hexadecimal Unicode code point. func replacing<Output, Replacement>( _ regex: some RegexComponent, subrange: Range<Self. Modified 12 months ago. Dec 2, 2015 · The key difference between a string literal and the underlying String object is that a string literal allows one to use a backslash as an "escape" character, used when representing special characters (or doing string interpolation). Rather than printing the actual value of the string, it prints the value as a string literal, i. These include uppercase and lowercase letters, decimal digits, hyphen, period, underscore, and tilde. utf8)!] Sep 4, 2019 · I’d be very surprised if your web service was returning a JSON with newline characters (0x0a) within its string values, rather than \ character followed by n character. It the May 11, 2015 · For that and also future reference: \0 – Null character (that is a zero after the slash) \\ – Backslash itself. 0 changed UnicodeScalar initializer I am looking for a simple way to remove the 4 characters in the tilesColored String "ment" from the shuffledWord1. The backslashes are virtual, they are added to be able to display double quotes in a literal string. NSJSONSerialization - Unable to convert data to string on Swift. 2. The issue is the debugger. 3. In this tutorial, you will learn about Swift characters and strings. But don't be tempted to use a character set like urlQueryAllowed, as that will let some key characters (notably & and +) pass unescaped. characters property. Viewed 390 times Part of Mobile Development Collective Aug 10, 2014 · Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about your product, service or employer brand Every Character instance is composed of one or more Unicode scalar values that are grouped together as an extended grapheme cluster. Or use a String method to replace single backslashes with double backslashes. Dec 28, 2022 · escape characters in Swift. \t – Horizontal tab \n – Line Feed \r – Carriage Return \” – Double quote. Those simplify such tests and are more robust then simple check for \n. Swift automatically adds an escape in strings that have apostrophes, in an array. String Manipulation append append(c: Character) IS the right method but your code has two other problems. Swift and However, Swift provides an even simpler method — raw strings. Shame there isn't a more elegant solution. Viewed 9k times 2 . Nov 29, 2018 · The Swift Programming Language would need to update the “Special Characters in String Literals” section in its Strings and Characters chapter to document the new escape sequence. Match) throws -> Replacement ) rethrows -> Self where Replacement May 15, 2015 · Please mind the difference between the regex escapes (in the above table) and string literal escape sequences used in the regular string literals that you may check, say, at Special Characters in String Literals: String literals can include the following special characters: Oct 14, 2020 · With Swift 5 you can use enhanced delimiters: String literals can now be expressed using enhanced delimiters. sendTextField. 1. data(withJSONObject: o5, options: JSONSerialization. Nov 8, 2017 · The character value is 0x03 (Ctrl-C) and should not be there. 0, every Int type has an initializer able to take String as an input. Since you chose to post a clip from a screenshot all we can tell you is that whatever was displaying that text removed the special characters. let chars = Set("abcde". You haven't really provided enough information for anyone to help you, however. The reason has to do with Swift having C-style string literals. something. Jun 16, 2015 · In swift 2. One way to do that is with a Unicode escape (see the "Special Characters" heading there): \u{XX}, where XX is the hexadecimal for the code point you want. Without having to change your representation of chars as string ;). isNewline // true Character("\r"). Extra Escaped Character : optionally, specify any other characters that must be escaped when serializing. sendData(data) } May 24, 2019 · Swift: escape characters appear in json string. creates. Scalar has a value property that has the following declaration: A numeric representation of the Unicode scalar. This is its signature. Scalar's value property). stringValue) + "\r\n" let data = test. I'm trying Feb 8, 2019 · You need to escape both {and } that are outside of a character class:. Q1) What is a string in Swift? String is a sequence of characters used to represent text. Jun 13, 2014 · \ud83c\udd70 is a UTF-16 surrogate pair which encodes the unicode character 🅰 (U+1F170). 99! Learn more Jul 29, 2015 · As of Swift 2. For example: "'*. For instance, when you want to include a quotation mark within a Dec 14, 2015 · Multi-line String Literals (Swift 4) Swift now allows you to create a multi-line String literals. I hope you can now see the sad truth of the xkcd cartoon about backslashes : If we use raw strings instead, we still need to escape characters for the regex engine: to match “\” we must write “\”, and to match “(“ we must Nov 16, 2016 · In that way, you can see the escape character is shown (\). When you use # with a string it affects the way Swift understands special characters in the string: \ no longer acts as an escape character, so \n literally means a “backslash“ than an “n” rather than a line break, and \(variable) will be included as those characters rather than using string interpolation. that. A string literal with one or more number signs (#) before the opening quote treats backslashes and double-quote characters as literal unless they’re followed by the same number of number signs. Oct 24, 2024 · There's a version of replacing(_:subrange:maxReplacements:with:) which takes a closure so you can construct a replacement string from the match. Aug 8, 2019 · The url does not properly resolve with the escape characters included. In Unicode-unaware mode, escape sequences that are not one of the above become identity escapes: they represent the character that follows the backslash. It’s a fundamental data type that allows you to work with textual data in your Oct 2, 2016 · You want to use addingPercentEncoding to percent escape the string. Swift: how to suppress interpretation of special characters and provide Mar 28, 2015 · 我从jsonSerialization获取转义字符并且无法在Swift中对其进行解码 - I get escape characters from jsonSerialization and cannot decode them in Swift 在Swift中如何将字符串变量中的“不可见”转义字符获取为另一个变量 - In Swift how to obtain the “invisible” escape characters in a string variable into If the character for escaping is actually a backslash, then the tricky bit is that there are two levels of escaping, for the JSON encoding as well as the regular expression syntax. Courses Tutorials Examples There isn't actually anything called a ". Feb 2, 2019 · In Swift we need to use two slashes to escape a literal. 6. Viewed 2k times Part of Mobile Sep 7, 2015 · Is there a way to automatically escape characters in Swift? var myString = someMagicWord("#%"$@\/") In c#, someMagicWord = @ In Android studio you can paste your weird string and the ide will automatically escape charecters for you. Let’s explore how to escape characters in both traditional and raw string literals. Complete output when run May 18, 2022 · How to encode and then decode to JSON, to escape meantime the special character? I have now this code: let o5: [String: Any] = . Inserting a character in String (Swift) 1. 2, let chars = Set("abcde") created a set containing all characters from the given string. Now you can use. let jParams = try! JSONSerialization. This still works. tried replacing the escape character '\' in the final URL with empty String but to replace we need to find \ as "\". Because of this, characters in Swift don’t each take up the same amount of memory within a string’s representation. Jan 12, 2024 · However, Swift provides an even simpler method — raw strings. Unreserved characters in RFC 3986). These escape sequences are preceded by a backslash (\) and are followed by a specific character or code. The hexadecimal number can be from 1 to 6 digits long. Some escape sequence characters along with their description are given below: \n: This is a newline character. map syntax", specifically. So there are some specific characters you can put just after that backslash. But, if you using a JSON decoder, it should decode correctly, even though you could not write it that way as a Swift literal. You wrap the strings in triple double quotes ("""String"""). You do not need to escape newlines and quotes within the string: Oct 15, 2019 · Remove escape "\" character in Swift 5. , _ or ~-– see 2. \n - represents a newline character Dec 8, 2014 · Incidentally, your string replacement doesn't work because in Swift, "\rb" is a carriage return character followed by the letter "b" (literally the bytes 0D 98). As the documentation says: String literals can include the following special characters: Jul 22, 2014 · Thus, you might want to percent escape all characters that are not within RFC 3986's list of unreserved characters: Characters that are allowed in a URI but do not have a reserved purpose are called unreserved. That would only happen if some inexperienced back-end developer was manually building JSON rather than using functions that do this properly. Sep 24, 2020 · I’m getting a bunch of unneeded “escaped back-slash” characters when I convert my Swift Dictionary object using JSONSerialization. Here are some examples: Nov 1, 2015 · Both ways are documented. Scalar. Modified 2 years ago. Index>, maxReplacements: Int = . 0 Escaping string for new line (String Encoding) 16. Jul 12, 2015 · In Xcode with swift, how can I save text with quotation marks in it from a UItextfield into a string variable. Escape sequence characters are characters that do not represent themselves when used in a string. Ask Question Asked 5 years, 2 months ago. ou can use # symbol to specify a custom string delimiter. 2, println() and print() used to be separate functions. Ask Question Asked 9 years, 2 months ago. Free updates for future iOS versions. array")! May 16, 2018 · Swift: escape characters appear in json string. Previous Next Related. var word1: String = "employment" var shuffledWord1: String = "melpyoemtn" var Mar 17, 2020 · escape characters in Swift. Aug 20, 2015 · It never exists in the string itself, just in the Swift code. without escape characters, it breaks the string. UPDATED: Swift 3. The code then looks like this: In Swift 1. New Issue Checklist Updated SwiftLint to the latest version I searched for existing GitHub issues Describe the bug Custom regex does not work even though it is valid regex. 0 Backslash is the escape character is Swift. The \e character is originally from ASCII, and its hex value is 1B. data(withJSONObject: params) let jsonStringArray = [String(data: jParams, encoding: . Escaping with Backslashes. 0 Loading. In Swift 3, the syntax is a bit nicer. However, we need a bit more to get our regular Jun 8, 2016 · Backslash is used as an escape character to insert double quotes into Swift string precisely in the way that you use it. Swift : Wrong character in String. For instance, when you want to include a quotation mark within a String Operations. search(Needle). Scalar's value property. ( and so do regular expressions. 0, print() automatically adds a newline character. 1 • Xcode 11. Aug 31, 2014 · Swift 5. The String class in Swift provides different built-in functions that allow us to perform various procedure on strings. Jun 22, 2017 · Swift: escape characters appear in json string. – Jun 8, 2014 · #1. The first one isn't actually a character, but rather it makes the second one into a character. e. " So here's a function that does that, with a usage example: Aug 12, 2023 · Unicode Scalars and Escape Sequences: Swift supports Unicode escape sequences to represent characters that can’t be easily typed or displayed directly in source code. With Swift 5, Unicode. Apr 10, 2019 · You can use reduce in your collection and check if each character isASCII, if true return that character otherwise convert the special character to unicode: Swift 5. The problem occurs when this needle string contains special regex characters like *,+ and so on. Compare Two Strings Jul 3, 2014 · Using URLComponents also doesn't work properly because it does not escape the + character. In Swift, it would be written \u{20}. Here are some common escape sequences in Swift: 1. WritingOptions. Actually, it's not there. It contains: Eleven chapters worth of content. The motivation for this as ever is two fold. For example, in the declaration let str = "Hello, world", the default inferred type of the string literal "Hello, world" is String. a. – Aug 19, 2016 · The escaped special characters \0 (null character), \\ (backslash), \t (horizontal tab), \n (line feed), \r (carriage return), \" (double quote) and \' (single quote) An arbitrary Unicode scalar, written as \u{n}, where n is a 1–8 digit hexadecimal number with a value equal to a valid Unicode code point; So Swift does not have a special Jun 7, 2016 · Trying to add a single quote ' character in my code in Swift, but it's constantly adding a \\' and this is necessarily for an API Call. For example, \a represents the Apr 6, 2018 · Don't worry. json. It fails with error Jun 22, 2014 · How can I get a character from a ASCII code in Apple's new Swift? For example 65 would returns "A". Oct 18, 2019 · [Unable to parse the JSON document: 'Unrecognized character escape ''' (code 39) at [Source: (String)" Is there anyway to remove these backslash escape characters from the Swift string obtained from the textView prior to creating the mutation? I have tried to define the string as String(messageTextView. Feb 18, 2021 · A backslash in a JSON string needs to be escaped, so you need 2 backslashes in the JSON string, but to write this in a Swift string literal, you need to escape those two backslashes too. It the Jan 3, 2019 · Remember, we add one to escape (in the regex engine, and another one in Swift to escape the regex engine quote. It’s only happening on one of my Key-Value pairs - the one that ha Dec 30, 2024 · Well after all it looks like the escape characters weren't being recognized when I included them with the command so I've fixed it in the program itself. Sep 7, 2015 · Swift: escape characters appear in json string. characters) The reason is that a string itself does no longer conform to SequenceType, you have to use the characters view explicitly. As a nice example of how to do this properly, see Alamofire's ParameterEncoding escape routine. Swift invalid escape sequence in Oct 19, 2018 · Next step is to filter your string, go here and search in 3d column your bytes and unicode code point value is what you need (first column) and write it in swift code like "\u{2028}\u{206A}" (depending on your sorting). init(value, radix: 16, uppercase: true) } } Jun 15, 2016 · In Swift, you need to use two backslashes, \\, for every backslash you use in a regular expression. Swift string from web request JSON Jun 7, 2016 · The newline is the "raw character" contained in the string. In the following Swift program, we will demonstrate the escape sequence characters. Jan 17, 2019 · Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about your product, service or employer brand Sep 20, 2021 · It's very unlikely you actually want that character. Swift string literals do not use UTF-16, so that escape sequence doesn't make sense. Also, Int8 conforms to the Expressible By Integer Literal protocol, and therefore it can be used in the type annotation for the integer literal 42 in the declaration let x: Int8 = 42. 0 this has to be done as. Escaping with Backslashes# In a standard Swift string, the backslash \ is used as an escape character to insert special characters. Escape Escape: specify the character that escapes the escape character or string. That string doesn't have an "r" in it to replace Apr 24, 2015 · #2. This is identical to the fact that you can encode a character in JSON as \u0020, but that would not be valid Swift. You'll also learn different operations that can be performed on strings and characters. Let str = "Rainbow is "very \beautiful" Example 1. Dec 31, 2014 · R treats backslashes as escape values for character constants. let rx = "typedef\\W+struct\\W+\\{([^}]*)\\}\\W+(\\w+);" A quick demo: let rx = "typedef\\W Feb 3, 2017 · I want to do a string search inside a string. Dec 7, 2022 · Hello again S/E, I'd like to re-pitch one last time, introducing Single Quoted character literals as an alternative syntax for literals that are intended to be a single Character or Unicode. serialPort?. To match \", the regular expression requires you to escape the backslash (\\"). Newline (\n) not working in swift. Jul 4, 2015 · How do you quickly unescape unicode characters in Swift Strings? Right now, I have an array of strings, and to make it somewhat more user-readable, I added the following code that loops through each String & Character Literals, Concatenate strings, String Encoding and Decomposition, Examine and compare strings, Reversing Strings, Check if String contains Characters from a Defined Set, String Iteration, Unicode, Splitting a String into an Array, Uppercase and Lowercase Strings, Formatting Strings, Converting Swift string to a number type, Convert String to and from Data / NSData, Count Feb 29, 2024 · Strings and Characters. Modified 9 years ago. My code is: let locationLat = String(format: "%f", ( Oct 16, 2017 · It's OK if you are only doing this for an exercise. Jun 9, 2017 · Swift 5 introduced couple of new properties on Character. The way these scalar values are grouped is defined by a canonical, localized, or otherwise tailored Unicode segmentation algorithm. We need to escape the escape character, this is because of string interpolation in Swift. Simply saying MySTR. ) You can see how they are processed using cat. The basic gist of it is that in a string, the backslash character has special meaning and doesn't just mean the literal character of a backslash in the same way as another letter or character. Hence the need for two backslashes when supplying a character argument for a pattern. You can then easily generate an UnicodeScalar corresponding and print it afterwards.
dgr kmqeo zzdhxr tuwchg zwemk dhxcb acyp cuivi qgnz rdatlhz
{"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"}