{"id":20448,"date":"2025-11-04T11:05:01","date_gmt":"2025-11-04T05:35:01","guid":{"rendered":"https:\/\/vinish.dev\/?p=20448"},"modified":"2025-11-05T10:04:19","modified_gmt":"2025-11-05T04:34:19","slug":"oracle-regexp_substr-function","status":"publish","type":"post","link":"https:\/\/vinish.dev\/oracle-regexp_substr-function","title":{"rendered":"Oracle REGEXP_SUBSTR Function: A Simple Guide"},"content":{"rendered":"\n<p>While <code>REGEXP_REPLACE<\/code> is for changing text, what if you just want to <em>extract<\/em> text that matches a pattern? For this, <a href=\"https:\/\/vinish.dev\/oracle-database-23ai\">Oracle<\/a> provides the powerful <code>REGEXP_SUBSTR<\/code> function.<\/p>\n\n\n\n<p><code>REGEXP_SUBSTR<\/code> stands for \"Regular Expression Substring.\" It searches a string for a regular expression pattern and returns the actual text that it finds.<\/p>\n\n\n\n<p>This is perfect for:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Pulling an email address from a block of text.<\/li>\n\n\n\n<li>Extracting a zip code from an address string.<\/li>\n\n\n\n<li>Getting the text from inside parentheses or brackets.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">REGEXP_SUBSTR Function Syntax<\/h2>\n\n\n\n<p>The syntax has several parts, but you'll often just use the first two or three.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">REGEXP_SUBSTR(source_char, pattern, [position], [occurrence], [match_param], [subexpr])\n<\/pre>\n\n\n\n<p>Let's break that down:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong><code>source_char<\/code><\/strong>: The original string or column you want to search (e.g., <code>'Notes: (confidential)'<\/code> or <code>user_comments<\/code>).<\/li>\n\n\n\n<li><strong><code>pattern<\/code><\/strong>: The regular expression pattern you are looking for (e.g., <code>'[a-zA-Z0-9._%-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,4}'<\/code> to find an email).<\/li>\n\n\n\n<li><strong><code>[position]<\/code><\/strong> (Optional): An integer telling Oracle where to start searching. The default is <code>1<\/code> (the beginning of the string).<\/li>\n\n\n\n<li><strong><code>[occurrence]<\/code><\/strong> (Optional): An integer telling Oracle <em>which<\/em> match to return. The default is <code>1<\/code> (it returns the first match).<\/li>\n\n\n\n<li><strong><code>[match_param]<\/code><\/strong> (Optional): A text string that changes the matching behavior. For example, <code>'i'<\/code> makes the search case-insensitive.<\/li>\n\n\n\n<li><strong><code>[subexpr]<\/code><\/strong> (Optional): An integer (0-9) to return a specific \"capture group\" (a part of the pattern inside parentheses) instead of the whole match.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Oracle REGEXP_SUBSTR Function Examples<\/h2>\n\n\n\n<p>Here are two practical examples of how to use <code>REGEXP_SUBSTR<\/code>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Example 1: Extracting an Email Address<\/h3>\n\n\n\n<p>This is a classic use case. You have a free-text field, and you need to pull out the email address.<\/p>\n\n\n\n<p>The pattern <code>'[a-zA-Z0-9._%-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,4}'<\/code> is a basic regular expression for an email.<\/p>\n\n\n\n<p><strong>Query:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">SELECT \n  REGEXP_SUBSTR('Contact us at support@example.com for help.',\n                '[a-zA-Z0-9._%-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,4}') AS \"Email\"\nFROM DUAL;\n<\/pre>\n\n\n\n<p><strong>Result:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Email\n-------------------\nsupport@example.com\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Example 2: Extracting Text from Parentheses<\/h3>\n\n\n\n<p>Imagine you want to extract <em>only<\/em> the text from inside a set of parentheses. We can do this using the <code>subexpr<\/code> argument.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Pattern:<\/strong><code>\\(([^)]+)\\)<\/code>\n<ul class=\"wp-block-list\">\n<li><code>\\(<\/code>: Matches the literal <code>(<\/code>.<\/li>\n\n\n\n<li><code>([^)]+)<\/code>: This is our capture group (Group 1). It matches one or more characters that are <em>not<\/em> a <code>)<\/code>.<\/li>\n\n\n\n<li><code>\\)<\/code>: Matches the literal <code>)<\/code>.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong><code>subexpr<\/code>:<\/strong> We set this to <code>1<\/code> to return <em>only<\/em> what Group 1 captured.<\/li>\n<\/ul>\n\n\n\n<p><strong>Query:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">SELECT \n  REGEXP_SUBSTR('Order #123 (SKU: 45A-B)',\n                '\\(([^)]+)\\)', 1, 1, NULL, 1) AS \"SKU\"\nFROM DUAL;\n<\/pre>\n\n\n\n<p><strong>Result:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">SKU\n-----------\nSKU: 45A-B\n<\/pre>\n\n\n\n<p>If we had left out the <code>subexpr<\/code> argument, the result would have been <code>(SKU: 45A-B)<\/code>, including the parentheses.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>While REGEXP_REPLACE is for changing text, what if you just want to extract text that matches a pattern? For this, Oracle provides the powerful REGEXP_SUBSTR function. REGEXP_SUBSTR stands for \"Regular Expression Substring.\" It searches a string for a regular expression pattern and returns the actual text that it finds. This is perfect for: REGEXP_SUBSTR Function [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1807,1824],"tags":[1822],"class_list":["post-20448","post","type-post","status-publish","format-standard","hentry","category-oracle-sql","category-string-function","tag-ai-assisted"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Oracle REGEXP_SUBSTR function &#8226; Vinish.Dev<\/title>\n<meta name=\"description\" content=\"Learn to use Oracle REGEXP_SUBSTR function to extract text. This SQL guide gives the examples to find substrings with regular expressions.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vinish.dev\/oracle-regexp_substr-function\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Oracle REGEXP_SUBSTR function &#8226; Vinish.Dev\" \/>\n<meta property=\"og:description\" content=\"Learn to use Oracle REGEXP_SUBSTR function to extract text. This SQL guide gives the examples to find substrings with regular expressions.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vinish.dev\/oracle-regexp_substr-function\" \/>\n<meta property=\"og:site_name\" content=\"Vinish.Dev\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/foxinfotech2014\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-04T05:35:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-05T04:34:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/vinish.dev\/wp-content\/uploads\/2024\/09\/homepage-vinish.dev_.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"693\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Vinish Kapoor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/x.com\/vinish_kapoor\" \/>\n<meta name=\"twitter:site\" content=\"@foxinfotech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Vinish Kapoor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-regexp_substr-function#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-regexp_substr-function\"},\"author\":{\"name\":\"Vinish Kapoor\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/a7790479716d2a54131ca873f8483d3f\"},\"headline\":\"Oracle REGEXP_SUBSTR Function: A Simple Guide\",\"datePublished\":\"2025-11-04T05:35:01+00:00\",\"dateModified\":\"2025-11-05T04:34:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-regexp_substr-function\"},\"wordCount\":331,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/df5e5ca816f6f4302efc03cf58dc97b4\"},\"keywords\":[\"AI-Assisted\"],\"articleSection\":[\"Oracle SQL\",\"String Function\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/vinish.dev\\\/oracle-regexp_substr-function#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-regexp_substr-function\",\"url\":\"https:\\\/\\\/vinish.dev\\\/oracle-regexp_substr-function\",\"name\":\"Oracle REGEXP_SUBSTR function &#8226; Vinish.Dev\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/#website\"},\"datePublished\":\"2025-11-04T05:35:01+00:00\",\"dateModified\":\"2025-11-05T04:34:19+00:00\",\"description\":\"Learn to use Oracle REGEXP_SUBSTR function to extract text. This SQL guide gives the examples to find substrings with regular expressions.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-regexp_substr-function#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vinish.dev\\\/oracle-regexp_substr-function\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-regexp_substr-function#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vinish.dev\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Oracle SQL\",\"item\":\"https:\\\/\\\/vinish.dev\\\/category\\\/oracle-sql\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"String Function\",\"item\":\"https:\\\/\\\/vinish.dev\\\/category\\\/oracle-sql\\\/string-function\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Oracle REGEXP_SUBSTR Function: A Simple Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/#website\",\"url\":\"https:\\\/\\\/vinish.dev\\\/\",\"name\":\"Vinish.Dev\",\"description\":\"Vinish Kapoor&#039;s Blog: Best Oracle Blog for Developers\",\"publisher\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/df5e5ca816f6f4302efc03cf58dc97b4\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vinish.dev\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/df5e5ca816f6f4302efc03cf58dc97b4\",\"name\":\"Vinish Kapoor\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/vinishprofile.png\",\"url\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/vinishprofile.png\",\"contentUrl\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/vinishprofile.png\",\"width\":192,\"height\":192,\"caption\":\"Vinish Kapoor\"},\"logo\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/vinishprofile.png\"},\"description\":\"Vinish Kapoor is a seasoned software development professional and a fervent enthusiast of artificial intelligence (AI). His impressive career spans over 25+ years, marked by a relentless pursuit of innovation and excellence in the field of information technology. As an Oracle ACE, Vinish has distinguished himself as a leading expert in Oracle technologies, a title awarded to individuals who have demonstrated their deep commitment, leadership, and expertise in the Oracle community.\",\"sameAs\":[\"https:\\\/\\\/vinish.dev\\\/\",\"https:\\\/\\\/www.facebook.com\\\/foxinfotech2014\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/vinish-kapoor\\\/\",\"https:\\\/\\\/x.com\\\/foxinfotech\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/a7790479716d2a54131ca873f8483d3f\",\"name\":\"Vinish Kapoor\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g\",\"caption\":\"Vinish Kapoor\"},\"description\":\"Vinish Kapoor is a seasoned software development professional and a fervent enthusiast of artificial intelligence (AI). His impressive career spans over 25+ years, marked by a relentless pursuit of innovation and excellence in the field of information technology. As an Oracle ACE, Vinish has distinguished himself as a leading expert in Oracle technologies, a title awarded to individuals who have demonstrated their deep commitment, leadership, and expertise in the Oracle community.\",\"sameAs\":[\"https:\\\/\\\/vinish.dev\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/vinish-kapoor\\\/\",\"https:\\\/\\\/x.com\\\/https:\\\/\\\/x.com\\\/vinish_kapoor\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Oracle REGEXP_SUBSTR function &#8226; Vinish.Dev","description":"Learn to use Oracle REGEXP_SUBSTR function to extract text. This SQL guide gives the examples to find substrings with regular expressions.","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:\/\/vinish.dev\/oracle-regexp_substr-function","og_locale":"en_US","og_type":"article","og_title":"Oracle REGEXP_SUBSTR function &#8226; Vinish.Dev","og_description":"Learn to use Oracle REGEXP_SUBSTR function to extract text. This SQL guide gives the examples to find substrings with regular expressions.","og_url":"https:\/\/vinish.dev\/oracle-regexp_substr-function","og_site_name":"Vinish.Dev","article_publisher":"https:\/\/www.facebook.com\/foxinfotech2014","article_published_time":"2025-11-04T05:35:01+00:00","article_modified_time":"2025-11-05T04:34:19+00:00","og_image":[{"width":1200,"height":693,"url":"https:\/\/vinish.dev\/wp-content\/uploads\/2024\/09\/homepage-vinish.dev_.png","type":"image\/png"}],"author":"Vinish Kapoor","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/x.com\/vinish_kapoor","twitter_site":"@foxinfotech","twitter_misc":{"Written by":"Vinish Kapoor","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/vinish.dev\/oracle-regexp_substr-function#article","isPartOf":{"@id":"https:\/\/vinish.dev\/oracle-regexp_substr-function"},"author":{"name":"Vinish Kapoor","@id":"https:\/\/vinish.dev\/#\/schema\/person\/a7790479716d2a54131ca873f8483d3f"},"headline":"Oracle REGEXP_SUBSTR Function: A Simple Guide","datePublished":"2025-11-04T05:35:01+00:00","dateModified":"2025-11-05T04:34:19+00:00","mainEntityOfPage":{"@id":"https:\/\/vinish.dev\/oracle-regexp_substr-function"},"wordCount":331,"commentCount":0,"publisher":{"@id":"https:\/\/vinish.dev\/#\/schema\/person\/df5e5ca816f6f4302efc03cf58dc97b4"},"keywords":["AI-Assisted"],"articleSection":["Oracle SQL","String Function"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/vinish.dev\/oracle-regexp_substr-function#respond"]}]},{"@type":"WebPage","@id":"https:\/\/vinish.dev\/oracle-regexp_substr-function","url":"https:\/\/vinish.dev\/oracle-regexp_substr-function","name":"Oracle REGEXP_SUBSTR function &#8226; Vinish.Dev","isPartOf":{"@id":"https:\/\/vinish.dev\/#website"},"datePublished":"2025-11-04T05:35:01+00:00","dateModified":"2025-11-05T04:34:19+00:00","description":"Learn to use Oracle REGEXP_SUBSTR function to extract text. This SQL guide gives the examples to find substrings with regular expressions.","breadcrumb":{"@id":"https:\/\/vinish.dev\/oracle-regexp_substr-function#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vinish.dev\/oracle-regexp_substr-function"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/vinish.dev\/oracle-regexp_substr-function#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vinish.dev\/"},{"@type":"ListItem","position":2,"name":"Oracle SQL","item":"https:\/\/vinish.dev\/category\/oracle-sql"},{"@type":"ListItem","position":3,"name":"String Function","item":"https:\/\/vinish.dev\/category\/oracle-sql\/string-function"},{"@type":"ListItem","position":4,"name":"Oracle REGEXP_SUBSTR Function: A Simple Guide"}]},{"@type":"WebSite","@id":"https:\/\/vinish.dev\/#website","url":"https:\/\/vinish.dev\/","name":"Vinish.Dev","description":"Vinish Kapoor&#039;s Blog: Best Oracle Blog for Developers","publisher":{"@id":"https:\/\/vinish.dev\/#\/schema\/person\/df5e5ca816f6f4302efc03cf58dc97b4"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vinish.dev\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/vinish.dev\/#\/schema\/person\/df5e5ca816f6f4302efc03cf58dc97b4","name":"Vinish Kapoor","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vinish.dev\/wp-content\/uploads\/2023\/12\/vinishprofile.png","url":"https:\/\/vinish.dev\/wp-content\/uploads\/2023\/12\/vinishprofile.png","contentUrl":"https:\/\/vinish.dev\/wp-content\/uploads\/2023\/12\/vinishprofile.png","width":192,"height":192,"caption":"Vinish Kapoor"},"logo":{"@id":"https:\/\/vinish.dev\/wp-content\/uploads\/2023\/12\/vinishprofile.png"},"description":"Vinish Kapoor is a seasoned software development professional and a fervent enthusiast of artificial intelligence (AI). His impressive career spans over 25+ years, marked by a relentless pursuit of innovation and excellence in the field of information technology. As an Oracle ACE, Vinish has distinguished himself as a leading expert in Oracle technologies, a title awarded to individuals who have demonstrated their deep commitment, leadership, and expertise in the Oracle community.","sameAs":["https:\/\/vinish.dev\/","https:\/\/www.facebook.com\/foxinfotech2014","https:\/\/www.linkedin.com\/in\/vinish-kapoor\/","https:\/\/x.com\/foxinfotech"]},{"@type":"Person","@id":"https:\/\/vinish.dev\/#\/schema\/person\/a7790479716d2a54131ca873f8483d3f","name":"Vinish Kapoor","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g","caption":"Vinish Kapoor"},"description":"Vinish Kapoor is a seasoned software development professional and a fervent enthusiast of artificial intelligence (AI). His impressive career spans over 25+ years, marked by a relentless pursuit of innovation and excellence in the field of information technology. As an Oracle ACE, Vinish has distinguished himself as a leading expert in Oracle technologies, a title awarded to individuals who have demonstrated their deep commitment, leadership, and expertise in the Oracle community.","sameAs":["https:\/\/vinish.dev\/","https:\/\/www.linkedin.com\/in\/vinish-kapoor\/","https:\/\/x.com\/https:\/\/x.com\/vinish_kapoor"]}]}},"_links":{"self":[{"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/posts\/20448","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/comments?post=20448"}],"version-history":[{"count":1,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/posts\/20448\/revisions"}],"predecessor-version":[{"id":20449,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/posts\/20448\/revisions\/20449"}],"wp:attachment":[{"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/media?parent=20448"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/categories?post=20448"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/tags?post=20448"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}