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 ...
Videos
14:28
String in C programming | Discuss about string functions and it's ...
07:06
String Functions In C Programming | Edureka - YouTube
35:19
48 - STRING HANDLING FUNCTIONS - C PROGRAMMING - YouTube
String methods (video) | Strings
26:06
All C# string methods explained (C# Programming tutorial for ...
08:02
PHP string functions are awesome - YouTube
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).
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.
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.
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.
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 strlen() function in C calculates the length of a string (excluding the null character) and returns the result as an integer. Strings are a type of character array with a null terminator (\0) to signify the end of the string.
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.
Boomi
community.boomi.com โบ s โบ article โบ string-functions-examples
Article: String functions with examples - Boomi Community
The #1 intelligent iPaaS for digital transformation
W3Schools
w3schools.com โบ js โบ js_string_methods.asp
JavaScript String Methods
JS Examples JS HTML DOM JS HTML Input JS HTML Objects JS HTML Events JS Browser JS Editor JS Exercises JS Quiz JS Website JS Syllabus JS Study Plan JS Interview Prep JS Bootcamp JS Certificate JS Reference ... Javascript strings are primitive and immutable: All string methods produce a new string without altering the original string.
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.