For example i have strings of array like this. Below is the string of Example[0]
Name\r\n
Gamma\r\n
ID\r\n
3F97\r\n
CAR\r\n
Mitsubishi EVO LAN V\r\n
well i would like to duplicate this value from this string into Example[0]
Name\r\n
Gamma\r\n
ID\r\n
3F97\r\n
CAR\r\n
Mitsubishi EVO LAN V\r\n
Name\r\n
Gamma\r\n
ID\r\n
3F98\r\n
CAR\r\n
Mitsubishi EVO LAN V\r\n
is there anyway to do this? note that the change is below the ID from 3F97 into 3F98
You can split the string by end-of-line, change the fourth line, join it and concatenate it to the first string.