Community Tip - You can change your system assigned username to something more personal in your community settings. X
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;