This website uses cookies to ensure you get the best experience on our website. Privacy Policy OK

String and Character Operations

| See more in Computer Programming

zybooks 3.2 to 3.7

NavAnand
Created Date 02.23.21
Last Updated 02.24.21
Viewed 3 Times
Your browser doesn't support HTML5. System.Collections.Generic.List`1[System.String] System.Collections.Generic.List`1[System.String]
submit to reddit

Create multiple-choice games on Wisc-Online and play them on our Chakalaka mobile app!

But that's not all! Explore educational games created by others. Simply search by category or enter agame code number and dive into a world of learning and fun.

Download the Chakalaka mobile app here:
Topics of this game:
  • True if c is alphabetic: a-z or A-Z.
  • Changes c to an uppercase version.
  • True if c is digit: 0-9.
  • true if c is whitespace.
  • Changes c to a lowercase version.
  • The notation ____ accesses the character at index x of a string.
  • The function ______ returns s1's length.
  • The function ______ add string s2 to the end of string s1.
  • Returns index of first item occurrence
  • When we cannot find anything the find function gives____.
  • ___ returns substring starting at index and having length characters.
  • appends character c to the end of a string.
  • Inserts string subStr starting at index indx.
  • replaces characters at indices indx to indx+num-1 with a copy of subStr.
  • true when both of its operands are true
  • true when at least one of its two operands are true
  • true when its one operand is false, and vice-versa.
  • Checks if a is equal to b
  • Checks if a is not equal to b
  • Checks if a is less than b
  • Checks if a is greater than b
  • Checks if a is less than or equal to b
  • Checks if a is greater than or equal to b
  • functions that "changes" values or properties of a string, e.g., insert(), replace(), append(), +, resize().
  • functions that just "retrieve" values or properties from a string, e.g., at(), size(), substr(), fin