Hi All,
I am getting data from the screen. String - "ABC - UserName - XYZ". Now i want to get only "UserName" in a variable. Can anyone suggest me some solution to get this data and what function is available in Fitnesse to use it?
Thanks
Discussion posts and replies are publicly visible
Please correct me if not, but I think this question is more related to Java than Appian RPA but here is fuction
public static String isValidName(String name) { if (name != null) { String[] ar = name.trim().split("-"); if (ar.length>1) { return ar[1]; } } return "error"; }
No. I need specific solution related to Fitnesse Appian RPA.