I have multiple strings assigned to variables which has a common word. How can I split these strings in to two parts from the common word?
var str= "12344A56789";
Instead of having to write substring multiple times, is there a way to split the string from 4A
and get the following results?
var first = "1234";
var second = "56789";
NOTE: Each string lengths are different.