{"id":14895,"date":"2020-02-04T08:40:26","date_gmt":"2020-02-04T08:40:26","guid":{"rendered":"https:\/\/dbtut.com\/?p=14895"},"modified":"2020-02-04T08:43:31","modified_gmt":"2020-02-04T08:43:31","slug":"oracle-string-functions","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/","title":{"rendered":"Oracle String Functions"},"content":{"rendered":"<p>This article contains information about oracle string functions such as length, substr, concat, trim in Oracle database management system.<\/p>\n<h2>What is Oracle string function?<\/h2>\n<p>Oracle has several functions for manipulating character or text data.<\/p>\n<h3>ASCII function in Oracle(pl sql char to ascii)<\/h3>\n<p>ASCII Function returns the numerical equivalent of the character value in the ASCII table.<\/p>\n<pre class=\"lang:default decode:true \">SELECT ASCII('Y') AS Y FROM DUAL;<\/pre>\n<p><strong>NOTE:<\/strong> Dual table is a virtual table used in various operations.<\/p>\n<h3>CHR Function in Oracle(pl sql ascii to char)<\/h3>\n<p>CHR Function returns the character equivalent of the numerical value in the ASCII table.<\/p>\n<pre class=\"lang:default decode:true \">SELECT CHR(89) AS \"Y\" FROM DUAL;<\/pre>\n<h3>CONCAT Function in Oracle<\/h3>\n<p>The CONCAT function is used for string concatenation.<\/p>\n<pre class=\"lang:default decode:true \">SELECT CONCAT('Yusuf', ' Sefa') AS AD FROM DUAL;<\/pre>\n<p>The function can be nested for more than one value.<\/p>\n<pre class=\"lang:default decode:true\">SELECT CONCAT(CONCAT('Yusuf', ' Sefa'), ' SEZER') AS FullName FROM DUAL;<\/pre>\n<p><code>||<\/code> operator can also be used for string concatenation operation.<\/p>\n<pre class=\"lang:default decode:true\">SELECT 'Yusuf' || ' Sefa' AS Name FROM DUAL;<\/pre>\n<pre class=\"lang:default decode:true\">SELECT 'Yusuf' || ' Sefa' || ' SEZER' AS FullName FROM DUAL;<\/pre>\n<h3>INITCAP Function in Oracle<\/h3>\n<p>This function set the first letter of each value in a String expression as uppercase and the others as lowercase letters.<\/p>\n<pre class=\"lang:default decode:true\">SELECT INITCAP('YUSUF SEFA') AS Name FROM DUAL;<\/pre>\n<h3>LENGHT Function in Oracle<\/h3>\n<p>This function returns the length of a string.<\/p>\n<pre class=\"lang:default decode:true \">SELECT LENGTH('YUSUF SEFA SEZER') AS CHARACTER_LENGHT FROM DUAL;<\/pre>\n<p>There is also LENGHT2, LENGHT4, LENGHTB and LENGHTC functions in oracle. sytanx and logic is the same.<\/p>\n<p><strong>LENGHT2<\/strong> use UCS2 code points,<\/p>\n<p><strong>LENGHT4<\/strong> use UCS4 code points,<\/p>\n<p><strong>LENGHTB <\/strong>use bytes instead of characters,<\/p>\n<p><strong>LENGHTC<\/strong> use Unicode&nbsp;complete characters.<\/p>\n<h3>INSTR Function in Oracle<\/h3>\n<p>Returns the location of the searched value in a string expression.<\/p>\n<pre class=\"lang:default decode:true\">SELECT INSTR('YUSUF SEFA SEZER', 'U') AS Location_of_U FROM DUAL;<\/pre>\n<p>The parameters of the function are as follows.<\/p>\n<p>INSTR(string_to_search,substring,position, occurence)<\/p>\n<p>string&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-&gt;&nbsp; string to search<\/p>\n<p>substring&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -&gt;&nbsp; text to search in string<\/p>\n<p>position&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -&gt;&nbsp; this parameter is optinal. indicates where the search begins.<\/p>\n<p>occurence&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -&gt;&nbsp; this parameter is optional. The default value is 1. It means that you will search for first substring. If you want to search second substring in the string you must write 2 for this parameter.<\/p>\n<p>There is also INSTR2, INSTR4, INSTRB and INSTRC functions in oracle. sytanx and logic is the same.<\/p>\n<p><strong>INSTR2<\/strong> use UCS2 code points,<\/p>\n<p><strong>INSTR4<\/strong> use UCS4 code points,<\/p>\n<p><strong>INSTRB <\/strong>use bytes instead of characters,<\/p>\n<p><strong>INSTRC<\/strong> use Unicode&nbsp;complete characters.<\/p>\n<p><strong>Examples:<\/strong><\/p>\n<pre class=\"lang:default decode:true\">SELECT INSTR('dbtut', 't') FROM DUAL;\nResult: 3   (the first occurrence of 't')\n\nSELECT INSTR('dbtut', 't', 1, 1) FROM DUAL;\nResult: 2   (the first occurrence of 't')\n\nSELECT INSTR('dbtut', 't', 1, 2) FROM DUAL;\nResult: 5  (the second occurrence of 't')<\/pre>\n<h3>SUBSTR Function in Oracle<\/h3>\n<p>This function is used to extract a specific part from a String expression.<\/p>\n<p>The parameters of the function are as follows.<\/p>\n<p>SUBSTR(string, start_position, lenght)<\/p>\n<p>string&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-&gt;&nbsp; string to search<\/p>\n<p>start_position&nbsp; &nbsp;-&gt;&nbsp; start position for extracting<\/p>\n<p>position&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -&gt;&nbsp; this parameter is optinal. indicates extract lenght.<\/p>\n<p><strong>Examples:<\/strong><\/p>\n<pre class=\"lang:default decode:true\">SELECT SUBSTR('dbtut.com', 2, 2) FROM DUAL;\nResult: 'bt'\n\nSELECT SUBSTR('dbtut.com', 2) FROM DUAL;\nResult: 'btut.com'<\/pre>\n<h3>TRIM Function in Oracle<\/h3>\n<p>This function removes spaces at the beginning and end of the string expression by default.<\/p>\n<pre class=\"lang:default decode:true\">SELECT TRIM('   YUSUF SEFA SEZER   ') AS TRIM, LENGTH(TRIM('   YUSUF SEFA SEZER   ')) AS Name_Lenght FROM DUAL;<\/pre>\n<p>The function has several uses. You can find examples below.<\/p>\n<p><strong>Examples:<\/strong><\/p>\n<pre class=\"lang:default decode:true\">SELECT TRIM('   dbtut   ') FROM DUAL;\nResult: 'dbtut'\n\nSELECT TRIM(' '  FROM  '   dbtut   ') FROM DUAL;\nResult: 'dbtut'\n\nSELECT TRIM(LEADING '0' FROM '000dbtut0') FROM DUAL;\nResult: 'dbtut0'\n\nSELECT TRIM(TRAILING '1' FROM '1dbtut1') FROM DUAL;\nResult: '1dbtut'\n\nSELECT TRIM(BOTH '1' FROM '11dbtut11') FROM DUAL;\nResult: 'dbtut'<\/pre>\n<h3>RTRIM Function in Oracle<\/h3>\n<p>This function removes spaces at the end of the string expression by default. But if you set a second parameter, it will remove the character(s) you set right end of the string.<\/p>\n<p><strong>Examples:<\/strong><\/p>\n<pre class=\"lang:default decode:true\">SELECT RTRIM('dbtut   ') FROM DUAL;\nResult: 'dbtut'\n\nSELECT RTRIM('dbtut   ', ' ') FROM DUAL;\nResult: 'dbtut'\n\nSELECT RTRIM('dbtut.com', '.com') FROM DUAL;\nResult: 'dbtut'\n\nSELECT RTRIM('dbtut.com13254', '12345') FROM DUAL;\nResult: 'dbtut.com'<\/pre>\n<h3>LTRIM Function in Oracle<\/h3>\n<p>This function removes spaces from left side of the string expression by default. But if you set a second parameter, it will remove the character(s) you set from left side of the string.<\/p>\n<p><strong>Examples:<\/strong><\/p>\n<pre class=\"lang:default decode:true\">SELECT LTRIM('   dbtut') FROM DUAL;\nResult: 'dbtut'\n\nSELECT LTRIM('   dbtut', ' ') FROM DUAL;\nResult: 'dbtut'\n\nSELECT LTRIM('https:\/\/dbtut.com', 'https:\/\/') FROM DUAL;\nResult: 'dbtut.com'\n\nSELECT LTRIM('13254dbtut.com', '12345') FROM DUAL;\nResult: 'dbtut.com'<\/pre>\n<h3>RPAD Function in Oracle<\/h3>\n<p>This function completes the end of the string expression according to the value specified by the parameter.<\/p>\n<p>The parameters of the function are as follows.<\/p>\n<p>RPAD(string, lenght, character_to_complete)<\/p>\n<p>string&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -&gt;&nbsp; string to search<\/p>\n<p>lenght&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-&gt;&nbsp; total lenght of string after function executed<\/p>\n<p>character_to_complete&nbsp; &nbsp;-&gt;&nbsp; this parameter is optinal. If you set this parameter, it adds this character to the string as many as the number specified in the second parameter.<\/p>\n<p><strong>Examples:<\/strong><\/p>\n<pre class=\"lang:default decode:true\">SELECT RPAD('dbtut', 8) FROM DUAL;\nResult: 'dbtut   '\n\nSELECT RPAD('dbtut', 4) FROM DUAL;\nResult: 'dbtu'\n\nSELECT RPAD('dbtut', 6, '0') FROM DUAL;\nResult: 'dbtut0'\n\nSELECT RPAD('dbtut', 5, 'x') FROM DUAL;\nResult: 'dbtut'\n\nSELECT RPAD('dbtut', 8, 'x') FROM DUAL;\nResult: 'dbtutxxx'<\/pre>\n<h3>LPAD Function in Oracle<\/h3>\n<p>This function completes the start of the string expression according to the value specified by the parameter.<\/p>\n<p>The parameters of the function are as follows.<\/p>\n<p>LPAD(string, lenght, character_to_complete)<\/p>\n<p>string&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -&gt;&nbsp; string to search<\/p>\n<p>lenght&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-&gt;&nbsp; total lenght of string after function executed<\/p>\n<p>character_to_complete&nbsp; &nbsp;-&gt;&nbsp; this parameter is optinal. If you set this parameter, it adds this character to the start of the string as many as the number specified in the second parameter.<\/p>\n<p><strong>Examples:<\/strong><\/p>\n<pre class=\"lang:default decode:true\">SELECT LPAD('dbtut', 8) FROM DUAL;\nResult: '   dbtut'\n\nSELECT LPAD('dbtut', 4) FROM DUAL;\nResult: 'dbtu'\n\nSELECT LPAD('dbtut', 6, '0') FROM DUAL;\nResult: '0dbtut'\n\nSELECT LPAD('dbtut', 5, 'x') FROM DUAL;\nResult: 'dbtut'\n\nSELECT LPAD('dbtut', 8, 'x') FROM DUAL;\nResult: 'xxxdbtut'<\/pre>\n<h3>COMPOSE function in Oracle<\/h3>\n<p>This function returns unicode value of any data type. The data type must be able to converted to a string. Because function takes its parameter as string.<\/p>\n<p>The parameters of the function are as follows.<\/p>\n<p>COMPOSE(string)<\/p>\n<p>string&nbsp; &nbsp; -&gt;&nbsp; string to converted unicode<\/p>\n<pre class=\"lang:default decode:true\">SELECT COMPOSE('o' || unistr('\\0308') ) FROM DUAL;\nResult: \u00f6\n\nSELECT COMPOSE('a' || unistr('\\0302') ) FROM DUAL;\nResult: \u00e2<\/pre>\n<h3>Decompose Function in Oracle<\/h3>\n<p>Decompose function decompose a string and returns unicode string.<\/p>\n<p>Sample Usage:<\/p>\n<pre class=\"lang:default decode:true\">SELECT DECOMPOSE ('\u00e2') FROM DUAL; \n\nDECOMPOSE\n---------\na^<\/pre>\n<h3>Convert Function in Oracle<\/h3>\n<p>This function convert one character set to another character set. You can query V$NLS_VALID_VALUES to get character sets.<\/p>\n<pre class=\"lang:default decode:true \">SELECT * FROM V$NLS_VALID_VALUES WHERE parameter = 'CHARACTERSET'<\/pre>\n<p>Sample Usage:<\/p>\n<pre class=\"lang:default decode:true\">SELECT CONVERT('\u00c4', 'US7ASCII', 'WE8ISO8859P1') FROM DUAL;<\/pre>\n<h3>Replace Function in Oracle<\/h3>\n<p>This function replaces characters in a string with another characters.<\/p>\n<p>The parameters of the function are as follows.<\/p>\n<p>REPLACE(string, string_to_be_replaced,replace_string)<\/p>\n<p>string&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -&gt;&nbsp; main string<\/p>\n<p>string_to_be_replaced&nbsp; &nbsp; -&gt;&nbsp; string to be replaced<\/p>\n<p>replace_string&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -&gt;&nbsp;&nbsp; this parameter is optinal. If you set this parameter, it replaces second parameter with the string specified in this parameter. If you not set this parameter, this function removes the character specified in the second parameter from the string.<\/p>\n<p><strong>Examples:<\/strong><\/p>\n<pre class=\"lang:default decode:true\">SELECT REPLACE('xxxdbtut', 'xxx') FROM DUAL;\nResult: 'dbtut'\n\nSELECT REPLACE('xxxdbtutxxx', 'xxx') FROM DUAL;\nResult:'dbtut'\n\nSELECT REPLACE('dbtut.xxx', 'xxx', 'com') FROM DUAL;\nResult: 'dbtut.com'<\/pre>\n<h3>UPPER Function in Oracle<\/h3>\n<p>This functions converts all lowercases to uppercases in a string.<\/p>\n<p>Sample Usage:<\/p>\n<pre class=\"lang:default decode:true\">SELECT UPPER('dbtut111') FROM DUAL;\nResult: 'DBTUT111'<\/pre>\n<h3>LOWER Function in Oracle<\/h3>\n<p>This functions converts all uppercases to lowercases in a string.<\/p>\n<p>Sample Usage:<\/p>\n<pre class=\"lang:default decode:true\">SELECT LOWER('DBTUT111') FROM DUAL;\nResult: 'dbtut111'<\/pre>\n<h3>VSIZE Function in Oracle<\/h3>\n<p>This function returns number of bytes of expression.<\/p>\n<p>Sample Usages:<\/p>\n<pre class=\"lang:default decode:true \">SELECT VSIZE('dbtut') FROM DUAL;\nResult: 5\n\nSELECT VSIZE(null) FROM DUAL;\nResult: &lt;null&gt;\n\nSELECT surname, VSIZE (surname) \"BYTES\"      \n  FROM staffs\n  WHERE staff_id = 1;\n\nResult: \nLAST_NAME            BYTES\n--------------- ----------\nCAKIR                   5<\/pre>\n<h4>Difference between length and vsize function in oracle<\/h4>\n<p>Lenght function returns lenght of a string, but VSIZE function returns number of bytes. So, a character may be 2 byte.<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_14895\" class=\"pvc_stats all  \" data-element-id=\"14895\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>This article contains information about oracle string functions such as length, substr, concat, trim in Oracle database management system. What is Oracle string function? Oracle has several functions for manipulating character or text data. ASCII function in Oracle(pl sql char to ascii) ASCII Function returns the numerical equivalent of the character value in the ASCII &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_14895\" class=\"pvc_stats all  \" data-element-id=\"14895\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"author":485,"featured_media":14901,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[4],"tags":[8218,8259,8258,8260,8235,8262,8261,8263,8287,8234,8265,8264,8266,8249,8289,8288,8290,1694,8250,8292,8205,8203,8228,8268,8267,8269,8257,8256,8274,8231,8246,8243,8244,8245,8230,8238,8239,8240,8241,8242,8270,8272,8271,8273,8253,8237,8286,8284,8285,8214,8280,8281,8248,8247,8212,8216,8221,8222,8223,8225,8226,8202,8217,8210,8220,8219,8227,8224,8251,8291,8236,8283,8282,8232,8213,8276,8275,8277,8211,8252,8233,8278,8279,8215,8229,8254,8293,8255,8294,8207,8206,8209,8201,8208,8204],"class_list":["post-14895","post","type-post","status-publish","format-standard","has-post-thumbnail","","category-oracle","tag-ascii-function-in-oracle","tag-ascii-function-in-oracle-example","tag-ascii-function-in-oracle-sql","tag-ascii-function-in-oracle-with-example","tag-chr-function-in-oracle","tag-chr-function-in-oracle-example","tag-chr-function-in-oracle-sql","tag-chr-function-in-oracle-with-example","tag-compose-function-in-oracle","tag-concat-function-in-oracle","tag-concat-function-in-oracle-example","tag-concat-function-in-oracle-sql","tag-concat-function-in-oracle-with-example","tag-convert-function-in-oracle","tag-convert-function-in-oracle-example","tag-convert-function-in-oracle-for-dates","tag-convert-function-in-oracle-with-example","tag-datalenght-function-in-tsql","tag-decompose-function-in-oracle","tag-difference-between-length-and-vsize-function-in-oracle","tag-how-can-i-remove-last-character-from-a-string-in-oracle","tag-how-do-i-remove-a-character-from-a-string-in-oracle","tag-initcap-function-in-oracle","tag-initcap-function-in-oracle-example","tag-initcap-function-in-oracle-sql","tag-initcap-function-in-oracle-with-example","tag-instr-function-in-oracle-example","tag-instr-function-in-oracle-sql","tag-instr-function-in-oracle-with-example","tag-instr-function-in-oracle","tag-instr-functions-in-oracle","tag-instr2-function-in-oracle","tag-instr4-function-in-oracle","tag-instrc-function-in-oracle","tag-lenght-function-in-oracle","tag-lenght-functions-in-oracle","tag-lenght2-function-in-oracle","tag-lenght4-function-in-oracle","tag-lenghtb-function-in-oracle","tag-lenghtc-function-in-oracle","tag-length-function-in-oracle","tag-length-function-in-oracle-example","tag-length-function-in-oracle-sql","tag-length-function-in-oracle-with-example","tag-lower-function-in-oracle","tag-lpad-function-in-oracle","tag-lpad-function-in-oracle-example","tag-lpad-function-in-oracle-sql","tag-lpad-function-in-oracle-with-example","tag-lpad-oracle-function","tag-ltrim-and-rtrim-function-in-oracle","tag-ltrim-function-in-oracle","tag-oracle-compose-function","tag-oracle-compose-function-example","tag-oracle-instr","tag-oracle-instr-function-example","tag-oracle-pl-sql-ascii-char","tag-oracle-sql-ascii-code-to-char","tag-oracle-sql-ascii-value-of-character","tag-oracle-sql-convert-ascii-to-char","tag-oracle-sql-convert-character-to-ascii","tag-oracle-string-functions","tag-oracle-string-position-of-character","tag-oracle-plsql-string-functions","tag-pl-sql-ascii-characters","tag-pl-sql-ascii-to-char","tag-pl-sql-char-to-ascii","tag-pl-sql-convert-ascii-to-char","tag-replace-function-in-oracle","tag-replace-function-in-oracle-examples","tag-rpad-function-in-oracle","tag-rpad-function-in-oracle-example","tag-rpad-function-in-oracle-sql","tag-rtrim-function-in-oracle","tag-substr-function-in-oracle","tag-substr-function-in-oracle-example","tag-substr-function-in-oracle-sql","tag-substr-function-in-oracle-with-example","tag-substr-oracle","tag-translate-function-in-oracle","tag-trim-function-in-oracle","tag-trim-function-in-oracle-sql-query","tag-trim-function-in-oracle-with-example","tag-trim-string-oracle","tag-upper-function-in-oracle","tag-vsize-function-in-oracle","tag-vsize-function-in-oracle-example","tag-vsize-function-in-oracle-sql","tag-vsize-function-in-oracle-with-example","tag-what-does-instr-mean","tag-what-is-chr-10-in-oracle","tag-what-is-ltrim-and-rtrim-in-oracle","tag-what-is-oracle-string-function","tag-what-is-rtrim-in-oracle","tag-what-is-substring-in-oracle"],"aioseo_notices":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Oracle String Functions - Database Tutorials<\/title>\n<meta name=\"description\" content=\"Oracle String Functions\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Oracle String Functions - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"Oracle String Functions\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2020-02-04T08:40:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-02-04T08:43:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z.png\" \/>\n\t<meta property=\"og:image:width\" content=\"486\" \/>\n\t<meta property=\"og:image:height\" content=\"278\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Yusuf SEZER\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Yusuf SEZER\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/\"},\"author\":{\"name\":\"Yusuf SEZER\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/be8bf54494b6a89e626cbed2c940599a\"},\"headline\":\"Oracle String Functions\",\"datePublished\":\"2020-02-04T08:40:26+00:00\",\"dateModified\":\"2020-02-04T08:43:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/\"},\"wordCount\":1092,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z.png\",\"keywords\":[\"ASCII function in oracle\",\"ascii function in oracle example\",\"ascii function in oracle sql\",\"ascii function in oracle with example\",\"CHR Function in Oracle\",\"chr function in oracle example\",\"chr function in oracle sql\",\"chr function in oracle with example\",\"compose function in oracle\",\"CONCAT Function in Oracle\",\"concat function in oracle example\",\"concat function in oracle sql\",\"concat function in oracle with example\",\"Convert Function in Oracle\",\"convert function in oracle example\",\"convert function in oracle for dates\",\"convert function in oracle with example\",\"DATALENGHT Function in TSQL\",\"Decompose Function in Oracle\",\"Difference between length and vsize function in oracle\",\"How can I remove last character from a string in Oracle?\",\"How do I remove a character from a string in Oracle?\",\"INITCAP Function in Oracle\",\"initcap function in oracle example\",\"initcap function in oracle sql\",\"initcap function in oracle with example\",\"instr function in oracle example\",\"instr function in oracle sql\",\"instr function in oracle with example\",\"INSTR Function in Oracle:\",\"INSTR functions in oracle\",\"INSTR2 function in oracle\",\"INSTR4 function in oracle\",\"INSTRC function in oracle\",\"LENGHT Function in Oracle\",\"LENGHT functions in oracle\",\"LENGHT2 function in oracle\",\"LENGHT4 function in oracle\",\"LENGHTB function in oracle\",\"LENGHTC function in oracle\",\"length function in oracle\",\"length function in oracle example\",\"length function in oracle sql\",\"length function in oracle with example\",\"LOWER Function in Oracle\",\"LPAD Function in Oracle\",\"lpad function in oracle example\",\"lpad function in oracle sql\",\"lpad function in oracle with example\",\"lpad oracle function\",\"ltrim and rtrim function in oracle\",\"ltrim function in oracle\",\"oracle compose function\",\"oracle compose function example\",\"oracle instr\",\"oracle instr function example\",\"oracle pl sql ascii char\",\"oracle sql ascii code to char\",\"oracle sql ascii value of character\",\"oracle sql convert ascii to char\",\"oracle sql convert character to ascii\",\"oracle string functions\",\"oracle string position of character\",\"Oracle\/PLSQL String Functions\",\"pl sql ascii characters\",\"pl sql ascii to char\",\"pl sql char to ascii\",\"pl sql convert ascii to char\",\"Replace Function in Oracle\",\"replace function in oracle examples\",\"RPAD Function in Oracle\",\"rpad function in oracle example\",\"rpad function in oracle sql\",\"RTRIM Function in Oracle\",\"substr function in oracle\",\"substr function in oracle example\",\"substr function in oracle sql\",\"substr function in oracle with example\",\"substr oracle\",\"Translate Function in Oracle\",\"TRIM Function in Oracle\",\"trim function in oracle sql query\",\"trim function in oracle with example\",\"trim string oracle\",\"UPPER Function in Oracle\",\"VSIZE Function in Oracle\",\"vsize function in oracle example\",\"vsize function in oracle sql\",\"vsize function in oracle with example\",\"What does Instr mean?\",\"What is CHR 10 in Oracle?\",\"What is Ltrim and Rtrim in Oracle?\",\"What is Oracle string function?\",\"What is Rtrim in Oracle?\",\"What is substring in Oracle?\"],\"articleSection\":[\"ORACLE\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/\",\"name\":\"Oracle String Functions - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z.png\",\"datePublished\":\"2020-02-04T08:40:26+00:00\",\"dateModified\":\"2020-02-04T08:43:31+00:00\",\"description\":\"Oracle String Functions\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/#primaryimage\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z.png\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z.png\",\"width\":486,\"height\":278},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Oracle String Functions\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/dbtut.com\/#website\",\"url\":\"https:\/\/dbtut.com\/\",\"name\":\"Database Tutorials\",\"description\":\"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux\",\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/dbtut.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/dbtut.com\/#organization\",\"name\":\"dbtut\",\"url\":\"https:\/\/dbtut.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"width\":223,\"height\":36,\"caption\":\"dbtut\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/be8bf54494b6a89e626cbed2c940599a\",\"name\":\"Yusuf SEZER\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/19675b3db2d4ce370af047187123e2055a2b254ede3f0e7d9bc934da478146f7?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/19675b3db2d4ce370af047187123e2055a2b254ede3f0e7d9bc934da478146f7?s=96&d=mm&r=g\",\"caption\":\"Yusuf SEZER\"},\"url\":\"https:\/\/dbtut.com\/index.php\/author\/yusufsezer\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Oracle String Functions - Database Tutorials","description":"Oracle String Functions","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:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/","og_locale":"en_US","og_type":"article","og_title":"Oracle String Functions - Database Tutorials","og_description":"Oracle String Functions","og_url":"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/","og_site_name":"Database Tutorials","article_published_time":"2020-02-04T08:40:26+00:00","article_modified_time":"2020-02-04T08:43:31+00:00","og_image":[{"width":486,"height":278,"url":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z.png","type":"image\/png"}],"author":"Yusuf SEZER","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Yusuf SEZER","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/"},"author":{"name":"Yusuf SEZER","@id":"https:\/\/dbtut.com\/#\/schema\/person\/be8bf54494b6a89e626cbed2c940599a"},"headline":"Oracle String Functions","datePublished":"2020-02-04T08:40:26+00:00","dateModified":"2020-02-04T08:43:31+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/"},"wordCount":1092,"commentCount":0,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z.png","keywords":["ASCII function in oracle","ascii function in oracle example","ascii function in oracle sql","ascii function in oracle with example","CHR Function in Oracle","chr function in oracle example","chr function in oracle sql","chr function in oracle with example","compose function in oracle","CONCAT Function in Oracle","concat function in oracle example","concat function in oracle sql","concat function in oracle with example","Convert Function in Oracle","convert function in oracle example","convert function in oracle for dates","convert function in oracle with example","DATALENGHT Function in TSQL","Decompose Function in Oracle","Difference between length and vsize function in oracle","How can I remove last character from a string in Oracle?","How do I remove a character from a string in Oracle?","INITCAP Function in Oracle","initcap function in oracle example","initcap function in oracle sql","initcap function in oracle with example","instr function in oracle example","instr function in oracle sql","instr function in oracle with example","INSTR Function in Oracle:","INSTR functions in oracle","INSTR2 function in oracle","INSTR4 function in oracle","INSTRC function in oracle","LENGHT Function in Oracle","LENGHT functions in oracle","LENGHT2 function in oracle","LENGHT4 function in oracle","LENGHTB function in oracle","LENGHTC function in oracle","length function in oracle","length function in oracle example","length function in oracle sql","length function in oracle with example","LOWER Function in Oracle","LPAD Function in Oracle","lpad function in oracle example","lpad function in oracle sql","lpad function in oracle with example","lpad oracle function","ltrim and rtrim function in oracle","ltrim function in oracle","oracle compose function","oracle compose function example","oracle instr","oracle instr function example","oracle pl sql ascii char","oracle sql ascii code to char","oracle sql ascii value of character","oracle sql convert ascii to char","oracle sql convert character to ascii","oracle string functions","oracle string position of character","Oracle\/PLSQL String Functions","pl sql ascii characters","pl sql ascii to char","pl sql char to ascii","pl sql convert ascii to char","Replace Function in Oracle","replace function in oracle examples","RPAD Function in Oracle","rpad function in oracle example","rpad function in oracle sql","RTRIM Function in Oracle","substr function in oracle","substr function in oracle example","substr function in oracle sql","substr function in oracle with example","substr oracle","Translate Function in Oracle","TRIM Function in Oracle","trim function in oracle sql query","trim function in oracle with example","trim string oracle","UPPER Function in Oracle","VSIZE Function in Oracle","vsize function in oracle example","vsize function in oracle sql","vsize function in oracle with example","What does Instr mean?","What is CHR 10 in Oracle?","What is Ltrim and Rtrim in Oracle?","What is Oracle string function?","What is Rtrim in Oracle?","What is substring in Oracle?"],"articleSection":["ORACLE"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/","url":"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/","name":"Oracle String Functions - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/#primaryimage"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z.png","datePublished":"2020-02-04T08:40:26+00:00","dateModified":"2020-02-04T08:43:31+00:00","description":"Oracle String Functions","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/#primaryimage","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z.png","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/02\/Ads\u0131z.png","width":486,"height":278},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2020\/02\/04\/oracle-string-functions\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"Oracle String Functions"}]},{"@type":"WebSite","@id":"https:\/\/dbtut.com\/#website","url":"https:\/\/dbtut.com\/","name":"Database Tutorials","description":"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux","publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dbtut.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/dbtut.com\/#organization","name":"dbtut","url":"https:\/\/dbtut.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","width":223,"height":36,"caption":"dbtut"},"image":{"@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/dbtut.com\/#\/schema\/person\/be8bf54494b6a89e626cbed2c940599a","name":"Yusuf SEZER","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/19675b3db2d4ce370af047187123e2055a2b254ede3f0e7d9bc934da478146f7?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/19675b3db2d4ce370af047187123e2055a2b254ede3f0e7d9bc934da478146f7?s=96&d=mm&r=g","caption":"Yusuf SEZER"},"url":"https:\/\/dbtut.com\/index.php\/author\/yusufsezer\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/14895","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/users\/485"}],"replies":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/comments?post=14895"}],"version-history":[{"count":0,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/14895\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media\/14901"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=14895"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=14895"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=14895"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}