Tagged Questions
The formatted-input tag has no wiki summary.
16
votes
7answers
943 views
Does anyone actually use stream extraction operators?
I've written tons of operator<<(std::ostream &, const T &) functions -- they're incredibly useful.
I've never written an operator>>(std::istream &, T &) function in real ...
11
votes
5answers
2k views
Reading formatted data with C++'s stream operator >> when data has spaces
I have data in the following format:
4:How do you do?
10:Happy birthday
1:Purple monkey dishwasher
200:The Ancestral Territorial Imperatives of the Trumpeter Swan
The number can be anywhere from 1 ...
7
votes
4answers
947 views
C# equivalent of C sscanf
sscanf in C is a nice way to read well formatted input from a string.
How to achieve this C#.
For example,
int a,b;
char *str= "10 12";
sscanf(str,"%d %d",&a,&b);
The above code will ...
7
votes
5answers
1k views
C++ formatted input: how to 'skip' tokens?
Suppose I have an input file in this format:
VAL1 VAL2 VAL3
VAL1 VAL2 VAL3
I'm writing a program that would be interested only in VAL1 and VAL3. In C, if i wanted to 'skip' the second value, I'd do ...
3
votes
5answers
123 views
Stop reading at format mismatch
I have a file such as:
1.0000000e+01 8.0123000e+01 1.0000000e+01 1.0000000e+01 1.0000000e+01
-1.0000000e+01 1.0000000e+01 1.0001110e+01 1.0000000e+01 1.0000000e+01
1.0000000e+01 ...
1
vote
2answers
2k views
loading formatted data in VBA from a text file
I'm looking for the best way of loading formatted data in VBA. I’ve spent quite some time trying to find the equivalent of C-like or Fortran-like fscanf type functions, but without success.
...
1
vote
3answers
858 views
Formatted input box in VB.NET
Is there a control or method to accept formatted input in VB.NET?
i.e. It accepts input in a given format ##/##/## or similar?