{"id":6690,"date":"2023-05-08T04:31:20","date_gmt":"2023-05-08T04:31:20","guid":{"rendered":"https:\/\/studysection.com\/blog\/?p=6690"},"modified":"2023-10-03T09:28:47","modified_gmt":"2023-10-03T09:28:47","slug":"regular-expressions-and-python-re-overview","status":"publish","type":"post","link":"https:\/\/studysection.com\/blog\/regular-expressions-and-python-re-overview\/","title":{"rendered":"Regular Expressions and Python re Overview"},"content":{"rendered":"<p>Regular Expression is a technique used to specify search patterns for string-searching algorithms developed by American mathematician Stephen Cole Kleene in theoretical computer science.<br \/>\nFinite state automata is an equivalent machine for a regular expression.<\/p>\n<h2>Applications and Uses:<\/h2>\n<ul>\n<li>Regular Expressions are used in search engines, search and replace dialogs of word processors and text editors, and lexical analysis in a compiler, etc.<\/li>\n<li>Regular Expressions are used in just-in-time compilation for speed.<\/li>\n<li>The application includes validation, web scraping, data wrangling, simple parsing, the production of syntax highlighting systems, and many other tasks.<\/li>\n<li>In PostgreSQL, regular expressions are used for the implementation of transmission control language.<\/li>\n<\/ul>\n<h3>Regular Expression basics:<\/h3>\n<p>Many programming languages such as C, C++, Java, javascript, and python provide regular expression capabilities either built-in or via libraries, as it has uses in many situations.<br \/>\nPython programming language also has an inbuilt &#8220;re&#8221; module which provides all the searching capabilities to programmers.<\/p>\n<p><strong>Example: <\/strong><br \/>\n<code>import re<br \/>\npattern = '^G............h$'<br \/>\nstring_1 = 'Gurpreet Singh'<br \/>\nresult_1 = re.match(pattern, string_1)<br \/>\nprint(result_1)<br \/>\nstring_2 = 'Gurpreet'<br \/>\nresult_2 = re.match(pattern, string_2)<br \/>\nprint(result_2)<\/code><\/p>\n<p><strong>Output:<\/strong><br \/>\n<em>&lt;re.Match object; span=(0, 14), match=&#8217;Gurpreet Singh&#8217;&gt;<\/em><br \/>\nNone<br \/>\nIn the above example we are looking for a pattern: any fourteen-letter string starting with \u201cG\u201d and ending with \u201ch\u201d.<\/p>\n<h3>Special Characters:<\/h3>\n<table>\n<thead>\n<tr>\n<th>Character<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>^<\/td>\n<td>At the beginning of a string, it matches the expression to its right. It looks for any such instance before each \\n in the string.<\/td>\n<\/tr>\n<tr>\n<td>$<\/td>\n<td>At the end of a string, it matches the expression to its left. It looks for any such instance before each \\n in the string.<\/td>\n<\/tr>\n<tr>\n<td>.<\/td>\n<td>Except for line terminators like \\n, it matches any character.<\/td>\n<\/tr>\n<tr>\n<td>\\<\/td>\n<td>It is used to escape or signal special characters.<\/td>\n<\/tr>\n<tr>\n<td>A|B<\/td>\n<td>A and B are two expressions. Match either A or B. If A is matched, then B is not tested.<\/td>\n<\/tr>\n<tr>\n<td>+<\/td>\n<td>It matches the expression to its left 1 or more times.<\/td>\n<\/tr>\n<tr>\n<td>*<\/td>\n<td>It matches the expression to its left 0 or more times.<\/td>\n<\/tr>\n<tr>\n<td>?<\/td>\n<td>It matches 0 or 1 repetitions of expression to its left. If we add ? after +,? and * qualifiers then they will become non-greedy.<\/td>\n<\/tr>\n<tr>\n<td>{m}<\/td>\n<td>It matches \u2018m\u2019 repetitions of expression to its left. If there are less than \u2018m\u2019 repetitions then the whole expression does not match.<\/td>\n<\/tr>\n<tr>\n<td>{m,n}<\/td>\n<td>It matches the \u2018m\u2019 to \u2018n\u2019 repetitions of expression to its left.<\/td>\n<\/tr>\n<tr>\n<td>{m,n}?<\/td>\n<td>It matches \u2018m\u2019 repetitions of expression to its left and ignores \u2018n\u2019. It becomes non-greedy because of the \u2018?\u2019 qualifier.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3>Character Classes<\/h3>\n<table>\n<thead>\n<tr>\n<th>Character Classes<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>\\w<\/td>\n<td>It matches any word character containing a to z, A to Z, 0 to 9, or underscore.<\/td>\n<\/tr>\n<tr>\n<td>\\d<\/td>\n<td>It matches any string containing digits 0 to 9.<\/td>\n<\/tr>\n<tr>\n<td>\\D<\/td>\n<td>It matches any non-digits string.<\/td>\n<\/tr>\n<tr>\n<td>\\s<\/td>\n<td>It matches white space characters string including space characters, \\t, \\r, and \\n.<\/td>\n<\/tr>\n<tr>\n<td>\\S<\/td>\n<td>It matches any non-whitespace character string.<\/td>\n<\/tr>\n<tr>\n<td>\\b<\/td>\n<td>It matches the string at the start or end of a word.<\/td>\n<\/tr>\n<tr>\n<td>\\B<\/td>\n<td>It matches the string that is not at the start or end of a word.<\/td>\n<\/tr>\n<tr>\n<td>\\A<\/td>\n<td>It matches the string only at the start of a word.<\/td>\n<\/tr>\n<tr>\n<td>\\Z<\/td>\n<td>It matches the string only at the end of a word.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3>Sets<\/h3>\n<table>\n<thead>\n<tr>\n<th>Set<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>[]<\/td>\n<td>It represents the set of characters to match.<\/td>\n<\/tr>\n<tr>\n<td>[qwe]<\/td>\n<td>It matches listed characters either q, w, or e. It does not match \u2018qwe\u2019 as a whole.<\/td>\n<\/tr>\n<tr>\n<td>[a-z]<\/td>\n<td>It matches any lowercase alphabet letter from a to z.<\/td>\n<\/tr>\n<tr>\n<td>[f\\-m]<\/td>\n<td>It matches either f, &#8211; or m.<\/td>\n<\/tr>\n<tr>\n<td>[0-]<\/td>\n<td>It matches either 0 or -.<\/td>\n<\/tr>\n<tr>\n<td>[-9]<\/td>\n<td>It matches either &#8211; or 9.<\/td>\n<\/tr>\n<tr>\n<td>[a-z0-9]<\/td>\n<td>It matches any lowercase alphabet letter from a to z and also from 0 to 9.<\/td>\n<\/tr>\n<tr>\n<td>[(+*)]<\/td>\n<td>It also matches special characters like other characters. It matches either (,+,* or ).<\/td>\n<\/tr>\n<tr>\n<td>[^yz9]<\/td>\n<td>^ used to exclude any character in the set. It matches all characters other than y,z, and 9.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3>Groups<\/h3>\n<table>\n<thead>\n<tr>\n<th>Group<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>()<\/td>\n<td>It represents a group and the expression inside it will match.<\/td>\n<\/tr>\n<tr>\n<td>(?)<\/td>\n<td>(?) | Inside parentheses like this, ? acts as an extension notation. Its meaning depends on the character immediately to its right.<\/td>\n<\/tr>\n<tr>\n<td>(?PAB)<\/td>\n<td>(?PAB) | Matches the expression AB, and it can be accessed with the group name.<\/td>\n<\/tr>\n<tr>\n<td>(?aiLmsux)<\/td>\n<td>Here, a, i, L, m, s, u, and x are flags:<br \/>\na \u2014 Matches ASCII only<br \/>\ni \u2014 Ignore case<br \/>\nL \u2014 Locale dependent<br \/>\nm \u2014 Multi-line<br \/>\ns \u2014 Matches all<br \/>\nu \u2014 Matches Unicode<br \/>\nx \u2014 Verbose<\/td>\n<\/tr>\n<tr>\n<td>(?:A)<\/td>\n<td>Matches the expression as represented by A, but unlike (?PAB), it cannot be retrieved afterward.<\/td>\n<\/tr>\n<tr>\n<td>(?#&#8230;)<\/td>\n<td>To specify a comment.<\/td>\n<\/tr>\n<tr>\n<td>A(?=B)<\/td>\n<td>Lookahead assertion. This matches the expression A only if it is followed by B.<\/td>\n<\/tr>\n<tr>\n<td>A(?!B)<\/td>\n<td>Negative lookahead assertion. This matches the expression A only if it is not followed by B.<\/td>\n<\/tr>\n<tr>\n<td>(?&lt;=B)A<\/td>\n<td>Positive look-behind assertion. This matches the expression A only if B is immediate to its left. This can only match fixed-length expressions.<\/td>\n<\/tr>\n<tr>\n<td>(?&lt;!B)A<\/td>\n<td>Negative look-behind assertion. This matches the expression A only if B is not immediately to its left. This can only match fixed-length expressions.<\/td>\n<\/tr>\n<tr>\n<td>(?P=name)<\/td>\n<td>Matches the expression matched by an earlier group named \u201cname\u201d.<\/td>\n<\/tr>\n<tr>\n<td>(&#8230;)\\1<\/td>\n<td>The number 1 corresponds to the first group to be matched. If we want to match more instances of the same expression, simply use its number instead of writing out the whole expression again. We can use from 1 up to 99 such groups and their corresponding numbers.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3>Python \u201cre\u201d module functions:<\/h3>\n<table>\n<thead>\n<tr>\n<th>Function<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>re.findall(A, B)<\/td>\n<td>Return list of all instances where expression A matches in string B.<\/td>\n<\/tr>\n<tr>\n<td>re.search(A, B)<\/td>\n<td>Return re-match object of the first instance where expression A matches in string B.<\/td>\n<\/tr>\n<tr>\n<td>re.split(A, B)<\/td>\n<td>Return a list of strings that are split a string B using delimiter A.<\/td>\n<\/tr>\n<tr>\n<td>re.sub(X, Y, S)<\/td>\n<td>Replace X with Y in the string S.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><small><em>People having good knowledge of Financial accounting can get an <a href=\"https:\/\/www.studysection.com\/financial-accountant-advanced-diploma\">Accounting Certification<\/a> from StudySection to increase their chances of getting a job in this field. You can get a foundation level certification if you are new to Financial accounting or you can go for advanced level certification if you have expert level skills in Financial accounting.<\/em><\/small><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Regular Expression is a technique used to specify search patterns for string-searching algorithms developed by American mathematician Stephen Cole Kleene<\/p>\n","protected":false},"author":1,"featured_media":6691,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6],"tags":[860,861],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Regular Expression and Python re Overview - SS Blog<\/title>\n<meta name=\"description\" content=\"Regular Expression is a technique used to specify search patterns for string-searching algorithms developed by American mathematician\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/studysection.com\/blog\/regular-expressions-and-python-re-overview\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Regular Expression and Python re Overview - SS Blog\" \/>\n<meta property=\"og:description\" content=\"Regular Expression is a technique used to specify search patterns for string-searching algorithms developed by American mathematician\" \/>\n<meta property=\"og:url\" content=\"https:\/\/studysection.com\/blog\/regular-expressions-and-python-re-overview\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog Posts on famous people, innovations and educational topics\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/studysection\" \/>\n<meta property=\"article:published_time\" content=\"2023-05-08T04:31:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-10-03T09:28:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2023\/05\/Python-re1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"300\" \/>\n\t<meta property=\"og:image:height\" content=\"200\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin-studysection-blog\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@studysection\" \/>\n<meta name=\"twitter:site\" content=\"@studysection\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin-studysection-blog\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/studysection.com\/blog\/regular-expressions-and-python-re-overview\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/studysection.com\/blog\/regular-expressions-and-python-re-overview\/\"},\"author\":{\"name\":\"admin-studysection-blog\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402\"},\"headline\":\"Regular Expressions and Python re Overview\",\"datePublished\":\"2023-05-08T04:31:20+00:00\",\"dateModified\":\"2023-10-03T09:28:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/studysection.com\/blog\/regular-expressions-and-python-re-overview\/\"},\"wordCount\":968,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/studysection.com\/blog\/#organization\"},\"keywords\":[\"Python re\",\"Regular Expressions\"],\"articleSection\":[\"Learn and Grow\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/studysection.com\/blog\/regular-expressions-and-python-re-overview\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/studysection.com\/blog\/regular-expressions-and-python-re-overview\/\",\"url\":\"https:\/\/studysection.com\/blog\/regular-expressions-and-python-re-overview\/\",\"name\":\"Regular Expression and Python re Overview - SS Blog\",\"isPartOf\":{\"@id\":\"https:\/\/studysection.com\/blog\/#website\"},\"datePublished\":\"2023-05-08T04:31:20+00:00\",\"dateModified\":\"2023-10-03T09:28:47+00:00\",\"description\":\"Regular Expression is a technique used to specify search patterns for string-searching algorithms developed by American mathematician\",\"breadcrumb\":{\"@id\":\"https:\/\/studysection.com\/blog\/regular-expressions-and-python-re-overview\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/studysection.com\/blog\/regular-expressions-and-python-re-overview\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/studysection.com\/blog\/regular-expressions-and-python-re-overview\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/studysection.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Regular Expressions and Python re Overview\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/studysection.com\/blog\/#website\",\"url\":\"https:\/\/studysection.com\/blog\/\",\"name\":\"Blog Posts on famous people, innovations and educational topics\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/studysection.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/studysection.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/studysection.com\/blog\/#organization\",\"name\":\"StudySection\",\"url\":\"https:\/\/studysection.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png\",\"contentUrl\":\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png\",\"width\":920,\"height\":440,\"caption\":\"StudySection\"},\"image\":{\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/studysection\",\"https:\/\/twitter.com\/studysection\",\"https:\/\/www.instagram.com\/study.section\/\",\"https:\/\/www.linkedin.com\/company\/studysection\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402\",\"name\":\"admin-studysection-blog\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g\",\"caption\":\"admin-studysection-blog\"},\"url\":\"https:\/\/studysection.com\/blog\/author\/admin-studysection-blog\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Regular Expression and Python re Overview - SS Blog","description":"Regular Expression is a technique used to specify search patterns for string-searching algorithms developed by American mathematician","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/studysection.com\/blog\/regular-expressions-and-python-re-overview\/","og_locale":"en_US","og_type":"article","og_title":"Regular Expression and Python re Overview - SS Blog","og_description":"Regular Expression is a technique used to specify search patterns for string-searching algorithms developed by American mathematician","og_url":"https:\/\/studysection.com\/blog\/regular-expressions-and-python-re-overview\/","og_site_name":"Blog Posts on famous people, innovations and educational topics","article_publisher":"https:\/\/www.facebook.com\/studysection","article_published_time":"2023-05-08T04:31:20+00:00","article_modified_time":"2023-10-03T09:28:47+00:00","og_image":[{"width":300,"height":200,"url":"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2023\/05\/Python-re1.png","type":"image\/png"}],"author":"admin-studysection-blog","twitter_card":"summary_large_image","twitter_creator":"@studysection","twitter_site":"@studysection","twitter_misc":{"Written by":"admin-studysection-blog","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/studysection.com\/blog\/regular-expressions-and-python-re-overview\/#article","isPartOf":{"@id":"https:\/\/studysection.com\/blog\/regular-expressions-and-python-re-overview\/"},"author":{"name":"admin-studysection-blog","@id":"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402"},"headline":"Regular Expressions and Python re Overview","datePublished":"2023-05-08T04:31:20+00:00","dateModified":"2023-10-03T09:28:47+00:00","mainEntityOfPage":{"@id":"https:\/\/studysection.com\/blog\/regular-expressions-and-python-re-overview\/"},"wordCount":968,"commentCount":0,"publisher":{"@id":"https:\/\/studysection.com\/blog\/#organization"},"keywords":["Python re","Regular Expressions"],"articleSection":["Learn and Grow"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/studysection.com\/blog\/regular-expressions-and-python-re-overview\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/studysection.com\/blog\/regular-expressions-and-python-re-overview\/","url":"https:\/\/studysection.com\/blog\/regular-expressions-and-python-re-overview\/","name":"Regular Expression and Python re Overview - SS Blog","isPartOf":{"@id":"https:\/\/studysection.com\/blog\/#website"},"datePublished":"2023-05-08T04:31:20+00:00","dateModified":"2023-10-03T09:28:47+00:00","description":"Regular Expression is a technique used to specify search patterns for string-searching algorithms developed by American mathematician","breadcrumb":{"@id":"https:\/\/studysection.com\/blog\/regular-expressions-and-python-re-overview\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/studysection.com\/blog\/regular-expressions-and-python-re-overview\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/studysection.com\/blog\/regular-expressions-and-python-re-overview\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/studysection.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Regular Expressions and Python re Overview"}]},{"@type":"WebSite","@id":"https:\/\/studysection.com\/blog\/#website","url":"https:\/\/studysection.com\/blog\/","name":"Blog Posts on famous people, innovations and educational topics","description":"","publisher":{"@id":"https:\/\/studysection.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/studysection.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/studysection.com\/blog\/#organization","name":"StudySection","url":"https:\/\/studysection.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png","contentUrl":"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png","width":920,"height":440,"caption":"StudySection"},"image":{"@id":"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/studysection","https:\/\/twitter.com\/studysection","https:\/\/www.instagram.com\/study.section\/","https:\/\/www.linkedin.com\/company\/studysection"]},{"@type":"Person","@id":"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402","name":"admin-studysection-blog","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/studysection.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g","caption":"admin-studysection-blog"},"url":"https:\/\/studysection.com\/blog\/author\/admin-studysection-blog\/"}]}},"views":161,"_links":{"self":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts\/6690"}],"collection":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/comments?post=6690"}],"version-history":[{"count":7,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts\/6690\/revisions"}],"predecessor-version":[{"id":6700,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts\/6690\/revisions\/6700"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/media\/6691"}],"wp:attachment":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/media?parent=6690"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/categories?post=6690"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/tags?post=6690"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}