{"id":4936,"date":"2026-01-14T17:19:00","date_gmt":"2026-01-14T16:19:00","guid":{"rendered":"https:\/\/sandshine.eu\/?p=4936"},"modified":"2025-12-04T17:39:53","modified_gmt":"2025-12-04T16:39:53","slug":"left-right-mid-combined-in-excel-complete-tutorial-with-examples","status":"publish","type":"post","link":"https:\/\/sandshine.eu\/index.php\/2026\/01\/14\/left-right-mid-combined-in-excel-complete-tutorial-with-examples\/","title":{"rendered":"LEFT, RIGHT &amp; MID Combined in Excel: Complete Tutorial with Examples"},"content":{"rendered":"\n<p>Need to extract multiple pieces from complex text? Combining LEFT, RIGHT, and MID creates powerful text parsing solutions. Master these combinations to split names, parse addresses, clean data, and extract any text segment you need.<\/p>\n\n\n\n<h5 class=\"wp-block-heading\">What Makes These Combinations Powerful<\/h5>\n\n\n\n<p>LEFT, RIGHT, and MID work together perfectly:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Complete text parsing<\/strong> &#8211; Extract any part of text from any position<\/li>\n\n\n\n<li><strong>Name splitting<\/strong> &#8211; Separate first, middle, and last names<\/li>\n\n\n\n<li><strong>Address parsing<\/strong> &#8211; Break down full addresses into components<\/li>\n\n\n\n<li><strong>Complex data cleaning<\/strong> &#8211; Handle multi-part codes and identifiers<\/li>\n\n\n\n<li><strong>Flexible extraction<\/strong> &#8211; Adapt to variable-length text fields<\/li>\n<\/ul>\n\n\n\n<h5 class=\"wp-block-heading\">How They Work Together<\/h5>\n\n\n\n<p><strong>LEFT<\/strong> gets the beginning. <strong>RIGHT<\/strong> gets the end. <strong>MID<\/strong> gets the middle.<\/p>\n\n\n\n<p>Combine all three in a single formula to extract multiple segments simultaneously.<\/p>\n\n\n\n<div class=\"wp-block-stackable-divider stk-block-divider stk-block stk-592f35e\" data-block-id=\"592f35e\"><style>.stk-592f35e {margin-bottom:0px !important;}<\/style><hr class=\"stk-block-divider__hr\"\/><\/div>\n\n\n\n<h5 class=\"wp-block-heading\">Example 1: Three-Part Product Code (Basic)<\/h5>\n\n\n\n<p>Extract category, year, and ID from product codes:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-white-color has-palette-color-3-background-color has-text-color has-background has-link-color has-fixed-layout\"><thead><tr><th>Product Code<\/th><\/tr><\/thead><tbody><tr><td>ELC-2025-12345<\/td><\/tr><tr><td>FUR-2024-67890<\/td><\/tr><tr><td>HRD-2025-11223<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>All Three Parts Combined<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Category: =LEFT(A2, 3)\nYear: =MID(A2, 5, 4)\nID: =RIGHT(A2, 5)\n\nCombined Display: =LEFT(A2, 3) &amp; \" \/ \" &amp; MID(A2, 5, 4) &amp; \" \/ \" &amp; RIGHT(A2, 5)<\/code><\/pre>\n\n\n\n<p><strong>Result<\/strong>: ELC \/ 2025 \/ 12345<\/p>\n\n\n\n<p>LEFT extracts the category, MID extracts the year, RIGHT extracts the ID number.<\/p>\n\n\n\n<div class=\"wp-block-stackable-divider stk-block-divider stk-block stk-c7e4145\" data-block-id=\"c7e4145\"><style>.stk-c7e4145 {margin-bottom:0px !important;}<\/style><hr class=\"stk-block-divider__hr\"\/><\/div>\n\n\n\n<h5 class=\"wp-block-heading\">Example 2: Phone Number Reformatting (Intermediate)<\/h5>\n\n\n\n<p>Convert (555) 123-4567 to 555.123.4567 using all three functions:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-white-color has-palette-color-3-background-color has-text-color has-background has-link-color has-fixed-layout\"><thead><tr><th>Phone Number<\/th><\/tr><\/thead><tbody><tr><td>(555) 123-4567<\/td><\/tr><tr><td>(415) 987-6543<\/td><\/tr><tr><td>(212) 456-7890<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Reformat Formula<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>=MID(A2, 2, 3) &amp; \".\" &amp; MID(A2, 7, 3) &amp; \".\" &amp; RIGHT(A2, 4)<\/code><\/pre>\n\n\n\n<p><strong>Result<\/strong>: 555.123.4567<\/p>\n\n\n\n<p>MID extracts area code (position 2), MID extracts prefix (position 7), RIGHT extracts line number.<\/p>\n\n\n\n<div class=\"wp-block-stackable-divider stk-block-divider stk-block stk-0f91b98\" data-block-id=\"0f91b98\"><style>.stk-0f91b98 {margin-bottom:0px !important;}<\/style><hr class=\"stk-block-divider__hr\"\/><\/div>\n\n\n\n<h5 class=\"wp-block-heading\">Example 3: Date Reconstruction (Intermediate)<\/h5>\n\n\n\n<p>Convert &#8220;2025-03-15&#8221; to &#8220;March 15, 2025&#8221; using all three:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-white-color has-palette-color-3-background-color has-text-color has-background has-link-color has-fixed-layout\"><thead><tr><th>Date String<\/th><\/tr><\/thead><tbody><tr><td>2025-03-15<\/td><\/tr><tr><td>2024-11-28<\/td><\/tr><tr><td>2025-07-04<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Display Formula<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>=TEXT(DATE(LEFT(A2,4), MID(A2,6,2), RIGHT(A2,2)), \"MMMM DD, YYYY\")<\/code><\/pre>\n\n\n\n<p><strong>Simpler Display<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>=\"Month: \" &amp; MID(A2,6,2) &amp; \" \/ Day: \" &amp; RIGHT(A2,2) &amp; \" \/ Year: \" &amp; LEFT(A2,4)<\/code><\/pre>\n\n\n\n<p><strong>Result<\/strong>: Month: 03 \/ Day: 15 \/ Year: 2025<\/p>\n\n\n\n<p>LEFT gets year, MID gets month, RIGHT gets day, all combined.<\/p>\n\n\n\n<div class=\"wp-block-stackable-divider stk-block-divider stk-block stk-8fa628e\" data-block-id=\"8fa628e\"><style>.stk-8fa628e {margin-bottom:0px !important;}<\/style><hr class=\"stk-block-divider__hr\"\/><\/div>\n\n\n\n<h5 class=\"wp-block-heading\">Example 4: Name Badge Format (Intermediate)<\/h5>\n\n\n\n<p>Create &#8220;SMITH, J.M.&#8221; format from &#8220;John Michael Smith&#8221;:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-white-color has-palette-color-3-background-color has-text-color has-background has-link-color has-fixed-layout\"><thead><tr><th>Full Name<\/th><\/tr><\/thead><tbody><tr><td>John Michael Smith<\/td><\/tr><tr><td>Sarah Ann Johnson<\/td><\/tr><tr><td>Mike Robert Williams<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Badge Format Formula<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>=UPPER(RIGHT(A2, LEN(A2)-SEARCH(\" \", A2, SEARCH(\" \", A2)+1))) &amp; \", \" &amp; LEFT(A2, 1) &amp; \".\" &amp; MID(A2, SEARCH(\" \", A2)+1, 1) &amp; \".\"<\/code><\/pre>\n\n\n\n<p><strong>Result<\/strong>: SMITH, J.M.<\/p>\n\n\n\n<p>RIGHT extracts last name, LEFT gets first initial, MID gets middle initial.<\/p>\n\n\n\n<div class=\"wp-block-stackable-divider stk-block-divider stk-block stk-78e9d09\" data-block-id=\"78e9d09\"><style>.stk-78e9d09 {margin-bottom:0px !important;}<\/style><hr class=\"stk-block-divider__hr\"\/><\/div>\n\n\n\n<h5 class=\"wp-block-heading\">Example 5: Account Number Masking (Advanced)<\/h5>\n\n\n\n<p>Show only first 3 and last 4 digits of account: ACC-XXXX-5678<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-white-color has-palette-color-3-background-color has-text-color has-background has-link-color has-fixed-layout\"><thead><tr><th>Account Number<\/th><\/tr><\/thead><tbody><tr><td>ACC-2024-5678<\/td><\/tr><tr><td>ACC-2025-9012<\/td><\/tr><tr><td>ACC-2024-3456<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Masked Display<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>=LEFT(A2, 3) &amp; \"-XXXX-\" &amp; RIGHT(A2, 4)<\/code><\/pre>\n\n\n\n<p><strong>Result<\/strong>: ACC-XXXX-5678<\/p>\n\n\n\n<p>LEFT keeps prefix, RIGHT shows last digits, middle is masked.<\/p>\n\n\n\n<div class=\"wp-block-stackable-divider stk-block-divider stk-block stk-32bcaa3\" data-block-id=\"32bcaa3\"><style>.stk-32bcaa3 {margin-bottom:0px !important;}<\/style><hr class=\"stk-block-divider__hr\"\/><\/div>\n\n\n\n<h5 class=\"wp-block-heading\">Example 6: Email Component Extraction (Advanced)<\/h5>\n\n\n\n<p>Extract and display all email parts in one formula:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-white-color has-palette-color-3-background-color has-text-color has-background has-link-color has-fixed-layout\"><thead><tr><th>Email<\/th><\/tr><\/thead><tbody><tr><td>john.smith@company.com<\/td><\/tr><tr><td>sarah.j@business.org<\/td><\/tr><tr><td>mike@email.net<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Full Breakdown Formula<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>=\"User: \" &amp; LEFT(A2, SEARCH(\"@\", A2)-1) &amp; \" | Domain: \" &amp; MID(A2, SEARCH(\"@\", A2)+1, SEARCH(\".\", A2, SEARCH(\"@\", A2))-SEARCH(\"@\", A2)-1) &amp; \" | Type: \" &amp; RIGHT(A2, LEN(A2)-SEARCH(\".\", A2, SEARCH(\"@\", A2)))<\/code><\/pre>\n\n\n\n<p><strong>Result<\/strong>: User: john.smith | Domain: company | Type: com<\/p>\n\n\n\n<p>LEFT extracts username, MID extracts domain name, RIGHT extracts extension.<\/p>\n\n\n\n<div class=\"wp-block-stackable-divider stk-block-divider stk-block stk-47e507f\" data-block-id=\"47e507f\"><style>.stk-47e507f {margin-bottom:0px !important;}<\/style><hr class=\"stk-block-divider__hr\"\/><\/div>\n\n\n\n<h5 class=\"wp-block-heading\">Example 7: Complex Code Validation (Advanced)<\/h5>\n\n\n\n<p>Create validation string from 4-part code: CAT-TYPE-YEAR-ID<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-white-color has-palette-color-3-background-color has-text-color has-background has-link-color has-fixed-layout\"><thead><tr><th>Full Code<\/th><\/tr><\/thead><tbody><tr><td>ELC-PROD-2025-12345<\/td><\/tr><tr><td>FUR-ITEM-2024-67890<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Validation Display<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>=\"Valid: \" &amp; LEFT(A2,3) &amp; \" is \" &amp; MID(A2,5,4) &amp; \" type from \" &amp; MID(A2,10,4) &amp; \" #\" &amp; RIGHT(A2,5)<\/code><\/pre>\n\n\n\n<p><strong>Result<\/strong>: Valid: ELC is PROD type from 2025 #12345<\/p>\n\n\n\n<p>LEFT gets category, first MID gets type, second MID gets year, RIGHT gets ID.<\/p>\n\n\n\n<div class=\"wp-block-stackable-divider stk-block-divider stk-block stk-d046b66\" data-block-id=\"d046b66\"><style>.stk-d046b66 {margin-bottom:0px !important;}<\/style><hr class=\"stk-block-divider__hr\"\/><\/div>\n\n\n\n<h5 class=\"wp-block-heading\">Example 8: Address Label Creation (Expert)<\/h5>\n\n\n\n<p>Format address from &#8220;123 Main St, Boston, MA 02101&#8221;:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-white-color has-palette-color-3-background-color has-text-color has-background has-link-color has-fixed-layout\"><thead><tr><th>Full Address<\/th><\/tr><\/thead><tbody><tr><td>123 Main St, Boston, MA 02101<\/td><\/tr><tr><td>456 Oak Ave, Portland, OR 97201<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Label Format<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>=LEFT(A2, SEARCH(\",\", A2)-1) &amp; CHAR(10) &amp; MID(A2, SEARCH(\",\", A2)+2, SEARCH(\",\", A2, SEARCH(\",\", A2)+1)-SEARCH(\",\", A2)-2) &amp; \", \" &amp; MID(A2, SEARCH(\",\", A2, SEARCH(\",\", A2)+1)+2, 2) &amp; \" \" &amp; RIGHT(A2, 5)<\/code><\/pre>\n\n\n\n<p><strong>Result (multi-line)<\/strong>: 123 Main St Boston, MA 02101<\/p>\n\n\n\n<p>LEFT gets street, first MID gets city, second MID gets state, RIGHT gets zip.<\/p>\n\n\n\n<div class=\"wp-block-stackable-divider stk-block-divider stk-block stk-85577fc\" data-block-id=\"85577fc\"><style>.stk-85577fc {margin-bottom:0px !important;}<\/style><hr class=\"stk-block-divider__hr\"\/><\/div>\n\n\n\n<h5 class=\"wp-block-heading\">Example 9: Serial Number Parser (Expert)<\/h5>\n\n\n\n<p>Parse &#8220;ABC-2025-Q1-001&#8221; into readable format:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-white-color has-palette-color-3-background-color has-text-color has-background has-link-color has-fixed-layout\"><thead><tr><th>Serial Number<\/th><\/tr><\/thead><tbody><tr><td>ABC-2025-Q1-001<\/td><\/tr><tr><td>DEF-2024-Q4-255<\/td><\/tr><tr><td>GHI-2025-Q2-128<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Formatted Output<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>=\"Product \" &amp; LEFT(A2,3) &amp; \" from \" &amp; MID(A2,5,4) &amp; \" quarter \" &amp; MID(A2,10,2) &amp; \" unit #\" &amp; RIGHT(A2,3)<\/code><\/pre>\n\n\n\n<p><strong>Result<\/strong>: Product ABC from 2025 quarter Q1 unit #001<\/p>\n\n\n\n<p>LEFT, two MIDs, and RIGHT extract all four segments.<\/p>\n\n\n\n<div class=\"wp-block-stackable-divider stk-block-divider stk-block stk-4f8ac1f\" data-block-id=\"4f8ac1f\"><style>.stk-4f8ac1f {margin-bottom:0px !important;}<\/style><hr class=\"stk-block-divider__hr\"\/><\/div>\n\n\n\n<h5 class=\"wp-block-heading\">Example 10: File Path Display (Expert)<\/h5>\n\n\n\n<p>Show &#8220;Filename.ext from Drive:&#8221; format:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-white-color has-palette-color-3-background-color has-text-color has-background has-link-color has-fixed-layout\"><thead><tr><th>File Path<\/th><\/tr><\/thead><tbody><tr><td>C:\\Users\\Documents\\report.pdf<\/td><\/tr><tr><td>D:\\Projects\\Data\\analysis.xlsx<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Display Formula<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>=RIGHT(A2, LEN(A2)-SEARCH(\"~\", SUBSTITUTE(A2, \"\\\", \"~\", LEN(A2)-LEN(SUBSTITUTE(A2, \"\\\", \"\"))))) &amp; \" from \" &amp; LEFT(A2, 2)<\/code><\/pre>\n\n\n\n<p><strong>Then Extract Parts<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>=\"File: \" &amp; LEFT(&#91;filename], SEARCH(\".\", &#91;filename])-1) &amp; \" | Type: \" &amp; RIGHT(&#91;filename], LEN(&#91;filename])-SEARCH(\".\", &#91;filename])) &amp; \" | Drive: \" &amp; LEFT(A2, 1)<\/code><\/pre>\n\n\n\n<p><strong>Result<\/strong>: File: report | Type: pdf | Drive: C<\/p>\n\n\n\n<p>RIGHT extracts filename, then LEFT gets name part, RIGHT gets extension, LEFT gets drive.<\/p>\n\n\n\n<div class=\"wp-block-stackable-divider stk-block-divider stk-block stk-7505fa7\" data-block-id=\"7505fa7\"><style>.stk-7505fa7 {margin-bottom:0px !important;}<\/style><hr class=\"stk-block-divider__hr\"\/><\/div>\n\n\n\n<h5 class=\"wp-block-heading\">Master Pattern: Three-Segment Extraction<\/h5>\n\n\n\n<p><strong>Template for any three-part text<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>=LEFT(A2, &#91;first_delimiter_position]-1) &amp; \" + \" &amp; \n MID(A2, &#91;first_delimiter_position]+1, &#91;second_delimiter_position]-&#91;first_delimiter_position]-1) &amp; \" + \" &amp; \n RIGHT(A2, LEN(A2)-&#91;second_delimiter_position])<\/code><\/pre>\n\n\n\n<h5 class=\"wp-block-heading\">Common Combination Patterns<\/h5>\n\n\n\n<p><strong>Display all three parts<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>=\"First: \" &amp; LEFT(A2, 5) &amp; \" | Middle: \" &amp; MID(A2, 7, 4) &amp; \" | Last: \" &amp; RIGHT(A2, 3)<\/code><\/pre>\n\n\n\n<p><strong>Reorder parts<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>=RIGHT(A2, 4) &amp; \"-\" &amp; MID(A2, 5, 4) &amp; \"-\" &amp; LEFT(A2, 3)<\/code><\/pre>\n\n\n\n<p><strong>Create formatted output<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>=LEFT(A2, 3) &amp; \" (\" &amp; MID(A2, 5, 4) &amp; \") \" &amp; RIGHT(A2, 5)<\/code><\/pre>\n\n\n\n<h5 class=\"wp-block-heading\">When to Use All Three Together<\/h5>\n\n\n\n<p>Use LEFT + MID + RIGHT combined when:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Text has three or more distinct segments<\/li>\n\n\n\n<li>Need to extract beginning, middle, and end simultaneously<\/li>\n\n\n\n<li>Reformatting or restructuring multi-part data<\/li>\n\n\n\n<li>Creating display strings from parsed components<\/li>\n\n\n\n<li>Building validation or summary strings<\/li>\n<\/ul>\n\n\n\n<h5 class=\"wp-block-heading\">Start Using Them Together<\/h5>\n\n\n\n<p>Pick a cell with three distinct parts separated by delimiters. Identify each segment&#8217;s position. Write LEFT for the first part, MID for the middle, RIGHT for the end. Combine them with concatenation (&amp;) to create your output.<\/p>\n\n\n\n<p>The power comes from using all three in one formula.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p><em>Questions about combining LEFT RIGHT MID? Need help with specific parsing scenarios? Let&#8217;s connect.<\/em><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Combine LEFT RIGHT MID to parse complex text, split names and addresses, extract multiple segments, and handle any text-parsing challenge.<\/p>\n","protected":false},"author":1,"featured_media":4940,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[35,36,37],"tags":[1568,1553,1572,1561,1567,1026,1552,1560,1556,1012,1563,1559,1557,1555,1499,1564,1570,1566,1562,1558,1569,1571,1554,1422,1565],"class_list":["post-4936","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-applications","category-excel","category-learning","tag-advanced-text-extraction-excel","tag-combine-left-right-mid","tag-complex-text-parsing-excel","tag-data-parsing-left-right-mid","tag-excel-365-text-functions","tag-excel-formulas-tutorial","tag-excel-left-right-mid-tutorial","tag-excel-text-functions-tutorial","tag-excel-text-parsing","tag-excel-tutorial-2025","tag-extract-text-excel-multiple-parts","tag-left-right-mid-advanced","tag-left-right-mid-combination","tag-left-right-mid-examples","tag-left-right-mid-excel","tag-left-right-mid-find-combination","tag-left-right-mid-for-beginners","tag-left-right-mid-formula-examples","tag-left-right-mid-with-search","tag-name-splitting-excel","tag-parse-address-excel","tag-split-name-excel","tag-split-text-excel","tag-text-extraction-excel","tag-text-manipulation-excel"],"blocksy_meta":{"styles_descriptor":{"styles":{"desktop":"","tablet":"","mobile":""},"google_fonts":[],"version":6}},"_links":{"self":[{"href":"https:\/\/sandshine.eu\/index.php\/wp-json\/wp\/v2\/posts\/4936","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sandshine.eu\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sandshine.eu\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sandshine.eu\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/sandshine.eu\/index.php\/wp-json\/wp\/v2\/comments?post=4936"}],"version-history":[{"count":1,"href":"https:\/\/sandshine.eu\/index.php\/wp-json\/wp\/v2\/posts\/4936\/revisions"}],"predecessor-version":[{"id":4941,"href":"https:\/\/sandshine.eu\/index.php\/wp-json\/wp\/v2\/posts\/4936\/revisions\/4941"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/sandshine.eu\/index.php\/wp-json\/wp\/v2\/media\/4940"}],"wp:attachment":[{"href":"https:\/\/sandshine.eu\/index.php\/wp-json\/wp\/v2\/media?parent=4936"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sandshine.eu\/index.php\/wp-json\/wp\/v2\/categories?post=4936"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sandshine.eu\/index.php\/wp-json\/wp\/v2\/tags?post=4936"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}