This is my worst case scenario for my work. I have to auto-separate this set of strings, but just don't know which function I should use. This is totally difficult! I need to separate the strings for the next step of my database work in Excel.
Here are examples of the data:
The strings to be separated in column A --
java-1.6.0-openjdk-1.6.0.0-1.21.b17.el6.x86_64
java-utils-1.6.0.0-1.el6.x386
Java-1.7.0-openjdk-1.7.1-3.1.5
gdb-1.6-5.2.7.el6
The parts of the strings after being separated successfully, in columns B C D E F G H I --
# name # Version # OSLv # Architecture #
java # 1.6.0 #openjdk # 1.6.0.0 # 1.21.b17 # el6 # x86_64 #
java# utils# # 1.6.0.0 # 1 #el6_3 #x386 #
Java# # # 1.7.1 # 3.1.5 # # #
gdb # # # 1.6 #5.2.7 #el6 # #
(In my opinion, if we separate the strings into two parts first, like
java-1.6.0-openjdk-1.6.0.0-1.21.b17 ##### .el6.x86_64
then the split into specific parts later will be easier...maybe !?)
Thank you a lot for every bit of help.
I will accept any solutions that you can provide me for later study :D
"#" marks show the separation of the parts of the strings into different cells.