strlen(s1) to find the length of the string s1
strcpy(s1,s2) copy source string to destination string(i.e copies s2 to s1,s2 remain unchanged)
strcmp(s1,s2) compares s1 and s2 and prints 0 if s1 and s2 are equal,-1 if s2 is greater, 1 if s1 is greater
strcat(s1,s2) combines string s1 and s2 to a single word and stores it in s1
strupr() converts lower case string to upper case
strlwr() converts upper case string to lower case
Exception handling is necessary for string handling as there might be some unexpected situation during string handling which may lead to program crash or abrupt termination
The string function that appends a source string to a destination string is typically called strcat in C and C++. This function takes two arguments: the destination string and the source string, and it appends the source string to the end of the destination string, modifying the destination string in place. In other programming languages, similar functionality may be achieved with functions like concat or the + operator for string concatenation.
Use "+". Example: String string = "does this answer " + "your question?";
strlen
explain about function call
shashi
Penis
Exception handling is necessary for string handling as there might be some unexpected situation during string handling which may lead to program crash or abrupt termination
GetA is a math function and not a string function.
The LEN function returns the length of the specified string.=LEN(text)text is the string to return the length for.EXAMPLE:=LEN(word) will return the value of 4.
The string function is strlength and it is evoked to return the length of a string.
Without any function is impossible. So I'll assume you mean any coded function, in which case the predefined function below is your answer.$string = strrev($string);
The string function that appends a source string to a destination string is typically called strcat in C and C++. This function takes two arguments: the destination string and the source string, and it appends the source string to the end of the destination string, modifying the destination string in place. In other programming languages, similar functionality may be achieved with functions like concat or the + operator for string concatenation.
string length is a function use to check the lenght of a string i.e number of alphabets in a word or sentence.
between parentheses: funname ("string")
The REPLACE function.
Use "+". Example: String string = "does this answer " + "your question?";