๐ŸŒ
Wikipedia
en.wikipedia.org โ€บ wiki โ€บ Comparison_of_programming_languages_(string_functions)
Comparison of programming languages (string functions) - Wikipedia
5 days ago - The most basic example of a string function is the length(string) function. This function returns the length of a string literal. ... Other languages may have string functions with similar or exactly the same syntax or parameters or outcomes. For example, in many languages the length function ...
๐ŸŒ
Rebus Community
press.rebus.community โ€บ programmingfundamentals โ€บ chapter โ€บ string-functions
String Functions โ€“ Programming Fundamentals
December 15, 2018 - Common examples include case conversion, comparison, concatenation, find, join, length, reverse, split, substring, and trim. ... Programming Fundamentals Copyright ยฉ 2018 by Authors and Contributors is ...
๐ŸŒ
HackerEarth
hackerearth.com โ€บ practice โ€บ notes โ€บ strings-and-string-manupulation-1
Strings And String Functions | HackerEarth
## String ## A string in C is actually a character array. As an individual character variable can store only one character, we need an array of characters to store โ€ฆ HackerEarth is a global hub of 5M+ developers.
๐ŸŒ
BeginnersBook
beginnersbook.com โ€บ 2014 โ€บ 01 โ€บ c-strings-string-functions
C โ€“ Strings and String functions with examples
Output: Length of string str1 when maxlen is 30: 13 Length of string str1 when maxlen is 10: 10 ยท Have you noticed the output of second printf statement, even though the string length was 13 it returned only 10 because the maxlen was 10. ... It compares the two strings and returns an integer value...
๐ŸŒ
GeeksforGeeks
geeksforgeeks.org โ€บ sql โ€บ sql-string-functions
SQL | String functions - GeeksforGeeks
It is useful when you want to extract a specific portion of a string. ... The POSITION() function finds the position of the first occurrence of a specified character in a string. ... The REPEAT() function repeats a string a specified number of times. It's useful when you need to duplicate a string or pattern for certain operations. ... RPAD() pads the right side of a string with specified characters to a fixed length.
Published ย  December 1, 2025
๐ŸŒ
W3Schools
w3schools.com โ€บ c โ€บ c_strings_functions.php
C String Functions
To concatenate (combine) two strings, you can use the strcat() function: char str1[20] = "Hello "; char str2[] = "World!"; // Concatenate str2 to str1 (result is stored in str1) strcat(str1, str2); // Print str1 printf("%s", str1); Try it Yourself ยป ยท Note that the size of str1 should be large enough to store the result of the two strings combined (20 in our example).
๐ŸŒ
Scaler
scaler.com โ€บ topics โ€บ c โ€บ string-functions-in-c
String Functions in C - Scaler Topics
March 1, 2022 - Let's look at an example to understand how string functions work in C. ... It takes a string (character array or character pointer) as input and writes the length of that string without including the end character '\0'. ... strnlen() take a ...
๐ŸŒ
Microsoft Support
support.microsoft.com โ€บ en-us โ€บ office โ€บ string-functions-and-how-to-use-them-965efa84-7009-4603-9765-2eb4a099ec72
String functions and how to use them - Microsoft Support
With string functions, you can create expressions in Access that manipulate text in a variety of ways. For example, you might want to display only part of a serial number on a form. Or, you might need to join (concatenate) several strings together, such as a last name and a first name.
๐ŸŒ
MDN Web Docs
developer.mozilla.org โ€บ en-US โ€บ docs โ€บ Web โ€บ JavaScript โ€บ Reference โ€บ Global_Objects โ€บ String
String - JavaScript | MDN
The constructor function that created the instance object. For String instances, the initial value is the String constructor.
Find elsewhere
๐ŸŒ
Medium
srivastavayushmaan1347.medium.com โ€บ a-comprehensive-guide-to-python-string-functions-9917d4b0a53b
A Comprehensive Guide to Python String Functions | by Ayushmaan Srivastav | Medium
November 1, 2023 - Python is fun.โ€ count = text.count(โ€œPythonโ€) print(count) # Output: 2 ยท These functions check if a string starts with or ends with a given substring.
๐ŸŒ
GeeksforGeeks
geeksforgeeks.org โ€บ c language โ€บ string-functions-in-c
C String Functions - GeeksforGeeks
July 26, 2025 - These string functions make it easier to perform tasks such as string copy, concatenation, comparison, length, etc. The <string.h> header file contains these string functions. The strlen() function is used to find the length of a string.
๐ŸŒ
ScholarHat
scholarhat.com โ€บ home
Strings in C++: String Functions In C++ With Example
This string function is used to append the string value or concatenate the string s2 at the end of string s1. Below is a simple example where the two string values have been passed to the function strcat().
Published ย  September 22, 2025
๐ŸŒ
Upgrad
upgrad.com โ€บ home โ€บ blog โ€บ software development โ€บ top 9 popular string functions in c with examples every programmer should know in 2025
The Ultimate Cheat Sheet: 9 Popular String Functions in C
June 16, 2025 - Functions like strcpy() for copying strings and strlen() for measuring string length are key to managing strings safely and efficiently, ensuring your code runs smoothly and securely.
๐ŸŒ
DigitalOcean
digitalocean.com โ€บ community โ€บ tutorials โ€บ python-string-functions
Python String Functions | DigitalOcean
August 3, 2022 - Python provides a lot of built-in functions to manipulate strings. Python String is immutable, so all these functions return a new string and the original string remains unchanged.
๐ŸŒ
ScholarHat
scholarhat.com โ€บ home
Strings in C with Examples: String Functions
August 2, 2025 - Explanation: The strcmp() function compares two strings. If they are identical, it returns 0. Since str1 and str2 both contain "Hello", the output will be "Equal". ... Explanation: The \0 character is used to indicate the end of a string in C.
๐ŸŒ
Programiz
programiz.com โ€บ c-programming โ€บ string-handling-functions
String Manipulations In C Programming Using Library Functions
Functions gets() and puts() are two string functions to take string input from the user and display it respectively as mentioned in the previous chapter.
๐ŸŒ
Wikipedia
en.wikipedia.org โ€บ wiki โ€บ String_(computer_science)
String (computer science) - Wikipedia
January 25, 2026 - The most basic example of a string function is the string length function โ€“ the function that returns the length of a string (not counting any terminator characters or any of the string's internal structural information) and does not modify ...
๐ŸŒ
Javatpoint
javatpoint.com โ€บ c-string-functions
C String Functions - javatpoint
C Strings The string can be defined as the one-dimensional array of characters terminated by a null ('\0'). The character array or the string is used to manipulate text such as word or sentences. Each character in the array occupies one byte of memory, and the last...
๐ŸŒ
GeeksforGeeks
geeksforgeeks.org โ€บ c language โ€บ string-functions-in-c
Commonly used String functions in C/C++ with Examples
July 26, 2025 - These string functions make it easier to perform tasks such as string copy, concatenation, comparison, length, etc. The <string.h> header file contains these string functions. The strlen() function is used to find the length of a string.