Find Length of Last Word

As a Systems Engineer at Tata Consultancy Services, I deliver exceptional software products for mobile and web platforms, using agile methodologies and robust quality maintenance. I am experienced in performance testing, automation testing, API testing, and manual testing, with various tools and technologies such as Jmeter, Azure LoadTest, Selenium, Java, OOPS, Maven, TestNG, and Postman.
I have successfully developed and executed detailed test plans, test cases, and scripts for Android and web applications, ensuring high-quality standards and user satisfaction. I have also demonstrated my proficiency in manual REST API testing with Postman, as well as in end-to-end performance and automation testing using Jmeter and selenium with Java, TestNG and Maven. Additionally, I have utilized Azure DevOps for bug tracking and issue management.
Given a string s consisting of words and spaces, return the length of the last word in the string.
A word is a maximal substring consisting of non-space characters only.
LeetCode Problem: Link | Click Here
class Solution {
public int lengthOfLastWord(String s){
// Split the input string by spaces and store each word in an array
String[] stringSplit = s.split(" ");
// Fetch the last word from the array of split strings
String stringLastWord = stringSplit[stringSplit.length - 1];
// Return the length of the last word
return stringLastWord.length();
}
}




