I am trying to open one file with 2 columns, the problems is the columns is separate with 9 spaces of caracter and i dont know what put in the delimiter option...
You are on the right track and your code is close.
The first thing to do is right click on the string control and change it to '\' Codes Display
Notice your delimiter is \s\\s, which I doubt is in your file. You are correct that \s is a space, however that is only valid in the \ code display. So your delimiter is a space followed by a true "\" character followed by an "s"
So you have 2 options to create a 9 space delimiter. In slash codes display type in \s\s\s\s\s\s\s\s\s or in the normal view just hit the space bar 9 times.
If you are not sure how many spaces there will be between values I would try something different. Here is a VI that takes a string and converts it over for you. I simple replace all groups of spaces with a tab control and then use the Spreed Sheet string to Array VI.
So read your file in as a string and feed it through this example code.
Personally, I prefer the "scan strings for tokens", because it skips empty tokens and thus any consecutive sequence of separators are treated as a single separator (what if somebody manually edits the file and replaces a few spaces with tabs?).
Have a look at my old example from this thread . (Also have a look at the slighly more complex version in my last post of the quoted thread).