Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X
Is it possible to find the length of the string.
If it is possible let me know how.
Solved! Go to Solution.
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;
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;