「Substring index」を含む例文一覧(3)

  • Return the lowest index in the string where substring sub is found, such that sub is contained in the range [start,end).
    文字列中の領域 [start, end) に sub が含まれる場合、その最小のインデクスを返します。 - Python
  • Return the highest index in the string where substring sub is found, such that sub is contained within s[start,end].
    文字列中の領域 [start, end) に sub が含まれる場合、その最大のインデクスを返します。 - Python
  • Since they're mutable, you can change a single character by doing obj[index] = 'a', or change a substring by assigning to a slice:obj[i1:i2] = '...'.
    それらは可変なので、 obj[index] = 'a' のように文字を変換できますし、スライスを使うことでobj[i1:i2] = '...' のように部分文字列を変換することができます。 - Python

例文データの著作権について