About 1,550,000 results
Open links in new tab
  1. c++ - How to use string.substr () function? - Stack Overflow

    Mar 19, 2010 · How to use string.substr () function? Asked 15 years, 7 months ago Modified 4 years, 5 months ago Viewed 185k times

  2. What is the difference between substr and substring?

    Sep 19, 2010 · 17 The big difference is, substr() is a deprecated method that can still be used, but should be used with caution because they are expected to be removed entirely sometime in …

  3. Why is String.prototype.substr () deprecated? - Stack Overflow

    Oct 4, 2018 · Moreover, substr is largely redundant with substring and slice, but the second argument has a different meaning. In pragmatic terms, I'd be surprised if you found a full …

  4. SQL Essentials: SUBSTR Function Explained — NetSuite Community

    May 17, 2024 · The SUBSTR function emerges as a fundamental tool in SQL for extracting substrings from strings based on specified criteria. Understanding the Syntax SUBSTR (string, …

  5. SELECT Statement with substr in WHERE Clause - Stack Overflow

    Mar 9, 2012 · SELECT Statement with substr in WHERE Clause Asked 13 years, 7 months ago Modified 12 years, 4 months ago Viewed 106k times

  6. How to use substring function in c? - Stack Overflow

    May 10, 2012 · If C did have a substring function, its declaration might look something like this: char *substr(const char *instring, size_t pos, size_t len); This would take the input string …

  7. How do I get textual contents from BLOB in Oracle SQL

    May 6, 2009 · 17 Use this SQL to get the first 2000 chars of the BLOB. SELECT utl_raw.cast_to_varchar2(dbms_lob.substr(<YOUR_BLOB_FIELD>,2000,1)) FROM …

  8. get string from right hand side - Stack Overflow

    Aug 9, 2010 · Actually I solved the problem with Reverse function. I curios is there any function that retrieve data from right hand side? For example : 9 characters from right side of string..

  9. sql - How to query a CLOB column in Oracle - Stack Overflow

    dbms_lob.substr( v_result, 4000 ,length(v_result) - 3999 ); end; / In dbms_lob.substr first parameter is clob which you want to extract . Second parameter is how much length of clob …

  10. SUBSTR and INSTR SQL Oracle - Stack Overflow

    3 I've started using SUBSTR and INSTR in Oracle but I got confused when I came across this. SELECT PHONE, SUBSTR(PHONE, 1, INSTR(PHONE, '-') -1) FROM DIRECTORY; So I …