how to check legnth of string in java code example
Example: java check for string length
String data = "Hello, World!";
int nameLength = data.length(); // 13
String data = "Hello, World!";
int nameLength = data.length(); // 13