String Methods

0
3χλμ.

String split() and join()

It’s a common programming task is to take a large string and break it down into a bunch of substrings. The split() splits a string into a list of substrings called tokens. All the tokens combined form the larger string if put together.  A separator character indicated where to split up the string, to create the tokens. 

The join() method performs the opposite of split() by joining a list of strings together to create a big string.

The split() and join() methods are sometimes used together.

Other string methods

There are several useful string methods

  • replace(old, newcount) - replace all old with new characters (up to count times)
  • find(x, start, end– find x, starting at start ending at end
  • rfind(x) – reverse version of find()
  • count(x) – returns number of occurrences of x
  • isalnum() – returns True if all characters are numbers or letters only
  • isdigit() – returns True if all characters are the numbers
  • islower() – returns True if all letters are lowercase
  • isupper() – return True if characters are uppercase
  • isspace() – Return True if all characters are whitespace
  • startswith(x) – return True if the string starts with x
  • endswith(x) – return True if the string ends with x
  • capitalize() – Returns a copy of the string with the first character capitalized and the rest lowercase
  • lower() – Returns a copy of the string with all lowercase characters
  • upper() – Returns a copy of the string with all uppercase characters
  • strip() – Returns a copy of the string with leading and trailing whitespace removed
  • title() – Returns a copy of the string as a title, with first letters of words capitalized

The arguments not in bold, that are italicized, are optional

String objects may be compared using relational operators (<, <=, >, >=), equality operators (==, !=), membership operators (in, not in), and identity operators (is, is not).

Αναζήτηση
Κατηγορίες
Διαβάζω περισσότερα
Technology
Importance of Cyber Laws
Cyber laws, also known as internet laws or digital laws, are essential for regulating activities...
από ALAGAI AUGUSTEN 2024-07-16 17:07:21 0 2χλμ.
Εκπαίδευση
A MUST KNOW FOR A'LEVEL HISTORY STUDENTS
https://acrobat.adobe.com/id/urn:aaid:sc:EU:7c45002b-2e38-426f-a0b9-8447c474993b
από Landus Mumbere Expedito 2024-07-15 19:08:17 0 3χλμ.
Sports
Tennessee Titans indicator Andre Dillard
The Tennessee Titans are authorizing former Philadelphia Eagles first-round pick offensive tackle...
από Indian Apoliscolts 2024-08-28 01:07:52 0 2χλμ.
Health
ED Treatment with Cenforce 200: How Long It Works
Erectile dysfunction (ED) is a condition that affects millions of men worldwide, causing...
από Lucas Miller 2024-09-11 05:40:20 0 2χλμ.
Computer Programming
HTML Table Headers: A Comprehensive Guide
HTML table headers are used to define the columns or rows of a table. They are typically styled...
από HTML PROGRAMMING LANGUAGE 2024-09-06 01:31:21 0 2χλμ.