I need to get the number before ':' from a string using robotframework how can I do it?
${str}= Set Variable 7939:customer-Id:123a34ghas
I need to get only 7939 before ':' how can I do it in the robot framework?
${Id}= split string ${str}
log to console ${Id} #Should give only 7939