https://github.com/vovandreevik/string-manipulation
This C++ program is designed for string manipulation. It provides various string operations, such as sorting, searching for repetitions, and finding strings that start with a specific sequence. The program is based on a custom String class.
https://github.com/vovandreevik/string-manipulation
cpp custom-string oop oops-in-cpp string
Last synced: 3 months ago
JSON representation
This C++ program is designed for string manipulation. It provides various string operations, such as sorting, searching for repetitions, and finding strings that start with a specific sequence. The program is based on a custom String class.
- Host: GitHub
- URL: https://github.com/vovandreevik/string-manipulation
- Owner: vovandreevik
- Created: 2022-12-23T23:06:21.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-10-26T19:08:10.000Z (over 1 year ago)
- Last Synced: 2025-02-13T14:49:44.019Z (4 months ago)
- Topics: cpp, custom-string, oop, oops-in-cpp, string
- Language: C++
- Homepage:
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C++ String Manipulation
## Program Description
This C++ program is designed for string manipulation. It provides various string operations, such as sorting, searching for repetitions, and finding strings that start with a specific sequence. The program is based on a custom `String` class.
## Prerequisites
Before using this program, you need to have:
- A C++ development environment installed on your computer.
- Basic knowledge of C++ programming.## Usage
The program allows you to input a set of strings and performs the following operations:
- Sorting the strings in lexicographical order.
- Checking for repetitions (duplicate strings).
- Finding strings that start with a specific sequence.
## Input
The program prompts you to enter a set of strings.You can choose to search for repetitions and strings that start with a specific sequence.
## Output
The program displays the sorted list of strings and the results of the repetition and search operations.