Skip to main content

Questions tagged [strings]

A string is a sequence of characters. It is commonly used to represent text or a sequence of bytes. Use this tag along with the appropriate programming language being used.

4 votes
4 answers
379 views

I was making a program that created several words in a list, and this made me think about trying to create a function that takes the closest words to a certain target, returning all the correct ...
Unknown's user avatar
  • 155
4 votes
1 answer
165 views

I've been working on a string library in C with C++ standard features of std::basic_string<char> just for learning purposes. It's called cstring and the full ...
Abhiram's user avatar
  • 41