About 7,440,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 …

  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 …

  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 …

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

    May 10, 2012 · I have a string and I want its sub string from 5th location to last location. Which function should I use?

  5. Filter pandas DataFrame by substring criteria - Stack Overflow

    Filter pandas DataFrame by substring criteria Asked 13 years, 4 months ago Modified 1 year, 11 months ago Viewed 1.6m times

  6. What does String.substring exactly do in Java? - Stack Overflow

    May 31, 2012 · I always thought if I do String s = "Hello World".substring(0, 5), then I just get a new string s = "Hello". This is also documented in the Java API doc: "Returns a new string that is a …

  7. java - substring index range - Stack Overflow

    The substring starts at, and includes the character at the location of the first number given and goes to, but does not include the character at the last number given.

  8. Find substring in a list of strings - Stack Overflow

    The best overloaded method match for 'string.Substring (int)' has some invalid arguments Substring is used to get part of string using character position and/or length of the resultant …

  9. 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

  10. How to check if a string contains a substring in Bash

    parameter expansion: If substring is empty or string where anything followed by substring followed by anything is replaced by nothing is nothing and string do contain something is a …