Search:

Type: Posts; User: angstrem

Search: Search took 0.10 seconds.

  1. Re: How to read different data segments from a text file?

    You can't use just "0" as a delimiter: you have numbers with zeros in your data, zeros in them will be interpreted as a delimiter. So you need to use a more complex delimiter, perhaps a symbol that...
  2. Re: How to read different data segments from a text file?

    You can use regular expressions matching. Read all the text file into a string, then try to identify patterns in it, compose regular expressions and apply them. For example, one regular expression...
Results 1 to 2 of 2