About 12,700,000 results
Open links in new tab
  1. What is the difference between substr and substring?

    Sep 19, 2010 · substring() allows you to specify the indices and the second argument is NOT inclusive There are some additional subtleties between substr() and substring() such as the handling of equal …

  2. What is the difference between String.slice and String.substring?

    Feb 11, 2010 · Distinctions of substring(): If start > stop, then substring will swap those 2 arguments. If either argument is negative or is NaN, it is treated as if it were 0. Distinctions of slice(): If start > stop, …

  3. Check whether a cell contains a substring - Stack Overflow

    Sep 4, 2013 · Is there an in-built function to check if a cell contains a given character/substring? It would mean you can apply textual functions like Left/Right/Mid on a conditional basis without throwing e...

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

    May 10, 2012 · 2 If you know the character also in the string from where you want to get the substring then you can use strstr function. It locates the substring. But if u do not know the character from …

  5. How do I get a substring of a string in Python? - Stack Overflow

    Aug 31, 2016 · I want to get a new string from the third character to the end of the string, e.g. myString[2:end]. If omitting the second part means 'to the end', and if you omit the first part, does it …

  6. Check substring exists in a string in C - Stack Overflow

    Rest are driver and helper codes. Assign a pointer to the main string and the substring, increment substring pointer when matching, stop looping when substring pointer is equal to substring length. …

  7. Finding a substring within a list in Python - Stack Overflow

    Dec 6, 2017 · Finding a substring within a list in Python [duplicate] Asked 12 years, 11 months ago Modified 7 years, 5 months ago Viewed 416k times

  8. string - javascript substring - Stack Overflow

    Apr 4, 2013 · You're confusing substring() and substr(): substring() expects two indices and not offset and length. In your case, the indices are 5 and 2, ie characters 2..4 will be returned as the higher …

  9. Get everything after and before certain character in SQL Server

    Jun 13, 2012 · I got the following entry in my database: images/test.jpg I want to trim the entry so I get: test So basically, I want everything after / and before . How can I solve it?

  10. What linux shell command returns a part of a string?

    Feb 28, 2017 · Extract substring in Bash asks for cutting out a sequence of characters surrounded by a certain delimiter. This question asks for cutting out a piece of a string giving numerical values for …