1
vote
1answer
26 views
libsvm model file format
According to this FAQ the model format in libsvm should be straightforward. And in fact it is, when I call just svm-train. As an example, the first SV for the a1a dataset is
1 3: …
2
votes
4answers
55 views
save variable as txt but not in the server
how can i save some variables in a txt file for the user?
dont want to generate and store in my server, just want to generate and then the user save on his pc, nothing changes on t …
0
votes
7answers
63 views
Pulling data from SQL, and writing to a text file.
I am trying to pull data from SQL, and then write it to a text file. This does that, to an extent, but it only pulls 1 from the table, which reads test:test<br> on the text f …
1
vote
9answers
1k views
Display text from .txt file in batch file
Hello,
I'm scripting a big batch file.
It records the date to a log.txt file:
@echo off
echo %date%, %time% >> log.txt
echo Current date/time is %date%, %time%.
@pause
exi …
2
votes
4answers
671 views
Java based OCR SDK/API
Are there any good OCR (optical character recognition) SDK or APIs in Java which will be able to convert TIFF files to txt files (or even html is good enough) with some sort of for …
0
votes
2answers
151 views
Parsing a .txt or html file into a string in the iPhone SDK
So, what I'm trying to do, is take a .txt or html file, being able to search through it, and grab a piece of text from file, place it into a string and finally adding it into a tex …
0
votes
2answers
123 views
Parsing a text file with Python?
Hello,
I have to do an assignment where i have a .txt file that contains something like this
p
There is no one who loves pain itself, who seeks after it and wants to
have it, simpl …
1
vote
5answers
247 views
Storing data in txt file in specific format
Hi, my question is related to my previous question (How to display data from txt file in specific format).
I was wondering if it is possible at the first place, to store data on t …
0
votes
2answers
160 views
Find line in text file, check for text in between?
Question about Batch/Windows/CMD:
I would like that my batch file can search for a line (which I already achieved, but what comes next not), it looks like this:
<name>MyNam …
2
votes
3answers
120 views
How to create a bmp file from rgb datas stored in a txt file?
Hi guys, I've to create a bmp image from two txt files.The first one is an mxn array:
* * * * * * * *
m n
c11 c21 .. cm1
...
c1n c2n .. cmn
* * * * * * * *
* * * * * * * *
6 5
.7 . …
0
votes
3answers
88 views
can i Put Html code in label to display in my page?
Hi all:
ASP.net with C#:
I have a web page which intended to be a help page, actually I am using a treeview component,and when some one clicks on a node a label on the page will ch …
0
votes
4answers
162 views
Batch: line & remove
I want a batch file which: removes a certain line [line number by %lnum%] in a txt file.
1
vote
9answers
466 views
How do I read and edit a .txt file in C#?
For example, I have a txt file that reads:
12 345 45
2342 234 45 2 2 45345
234 546 34 3 45 65 765
12 23 434 34 56 76 5
I want to insert a comma between all the numbers, add a le …
1
vote
3answers
142 views
IOException on DataGridView writing to text file C#
Good morning all,
I'm having a few problems with a method in my C# code that should enable a DataGridView to be saved to a .txt file.
The code is as below:
private void saveToTx …
1
vote
2answers
147 views
batch file which checks an entered text with text from a .txt file
I like to have a batch file which checks if an entered text in a .txt file is the same.
Something like this...:
@echo off
Set pass=
set /p pass=Enter your password:
......
..... …
