Solved
How to find the length of the string
Is it possible to find the length of the string.
If it is possible let me know how.
Is it possible to find the length of the string.
If it is possible let me know how.
Is this what you're looking for?
stringLen = InputString.length;
string2 = "Second";
stringLen2 = string2.length;
logger.warn("String1 / String2 length is " + stringLen + " / " + stringLen2);
result = stringLen + " / " + stringLen2;
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.