length of string s code example
Example 1: length of string java
public class Sample_String {
public static void main(String[] args) {
String S1 = "Hello Java String Method";
String S2 = "RockStar";
int length = S1.length();
System.out.println("Length of a String is: " + length);
System.out.println("Length of a String is: " + S2.length());
}
}
Example 2: str.length
#include <iostream>
#include <string>
int main ()
{
std::string str ("Test string");
std::cout << "The size of str is " << str.length() << " bytes.\n";
return 0;
}