Add files via upload#7
Open
edaraa2 wants to merge 1 commit intoAssignment---1-2/7/2024from
Open
Conversation
String Operations
|
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
String Operations:
Strings are fundamental building blocks in programming. They are essentially sequences of characters that represent text data. String operations allow you to manipulate and work with these text sequences in various ways. Here's a glimpse into some common string operations:
Accessing Characters:
You can access individual characters within a string using their index positions. The first character has an index of 0, the second character has an index of 1, and so on.
Slicing: You can extract a portion of a string using slicing syntax. This allows you to create substrings from the original string.
Concatenation: You can join multiple strings together to create a new string. The plus operator (+) is often used for concatenation.
Finding Length: The length of a string refers to the total number of characters it contains. There are built-in functions to determine the string length.
Searching: You can search for the presence of a specific substring within a string. This is useful for finding patterns or specific text chunks.
Modifying Case: You can convert a string to all uppercase or all lowercase letters. Some languages also offer functionalities for more specific capitalization schemes.
Replacing Substrings: You can replace occurrences of a specific substring within a string with another substring.
Splitting and Joining: You can split a string into a list of substrings based on a delimiter (e.g., comma, space). Conversely, you can join a list of strings into a single string using a specified delimiter.