Hi everybody,
I seem to have hit a wall with my perl script. I have managed to get my data into a desired format besides one problem: duplicates.
I'm not trying to remove them, I'm trying to rename them so that I can export them as field names into mysql.
Basically if I have an array such as
@a = (a,b,c,a,d,a),
I'm trying to alter it ie
@a_new = (a,b,c,a1,d,a2)
If you can suggest me some pointers, I'd greatly appreciate it. Thanks!
I seem to have hit a wall with my perl script. I have managed to get my data into a desired format besides one problem: duplicates.
I'm not trying to remove them, I'm trying to rename them so that I can export them as field names into mysql.
Basically if I have an array such as
@a = (a,b,c,a,d,a),
I'm trying to alter it ie
@a_new = (a,b,c,a1,d,a2)
If you can suggest me some pointers, I'd greatly appreciate it. Thanks!