If I understand the problem correctly, you have a string of text with the
various desired substrings separated by commas and you are trying to parse
out the substrings. If that is the task, try using the Match Pattern vi.
Use a constant "," as the "regular expression", feed the full string into
the "string" input. The output "before substring" will be the first
substring (the start date). Feed the output "after substring" to the
"string" input of a second Match Pattern vi (similarly wired with a "," to
the "regular expression"). The "before substring" output of this second
Match Pattern vi will have the second substring (the stop date). Continue
this pattern until all substrings are retrieved. (For a cleaner
implementation, you could put a single Match Pattern vi
in a while loop
testing for string length of the "after substring" output going to zero as
the exit criteria and feed the "before substring" to an output tunnel of the
while loop. This would give an array of strings at the output tunnel.)
Hope this helps.
Jim
Do_It_To_Me wrote in message
news:q5_U4.14185$jO1.20714@afrodite.telenet-ops.be...
> I've got the following problem :
>
> I have to configure a Spectrum Analyser by tcp-ip ... on the server
> application all the measurement specifications are resambled and put in to
a
> string (start date; stop date, min freq, max freq, mon freq, min carrier
> level, .... ) ... I receive the whole string perfectly on the remote
> application but when I want to Scan the String I got stuck on the start
date
> ... -) its a time and date that must be recovered from the string ... but
> the Scan string function can't get further then the , of the time .... I
> tried to change the time to an integer (before sending it) but
then the
time
> just isn't right anymore ....
>
> Can anyone help me please?
>
>