Good I have a code like this:
String ruta = "archivo.txt";
File archivo = new File(ruta);
String texto;
String[] a;
String pre= "texto a encontrar";
FileReader f = new FileReader(archivo);
FileWriter f1 = new FileWriter(archivo);
Buffere...
I have a very basic question. I have the following text file (cdrag.txt) and I want to extract only the value (number) that is just after Cd :
forceCoeffs forceCoeffs execute:
Coefficients
Cm : -3.99664 (pressure: -4.0...
Text and PHP files: How do I automatically display the message I just sent via POST on the same page?
here is my code:
<html>
<head>
<title>mboard</title>
</head>
<body>
<?php
$myfile = fopen("mboa...
Good afternoon!
I am creating a visitor registration form for commercials.
I need to extract in an "input type=" text "as the default value:
The commercial agent's code, (it is not the same as the client's id)
This is the form:
...
I have the following code
#include <stdio.h>
#include <string.h>
int main()
{
FILE *fp1;
FILE *fp2;
int i,j;
int bin[7], dec[70];
int c;
fp1 = fopen("bin.txt", "r"); //Abrimo el archivo
fp2 = fopen("dec.txt","r")...
I'm trying to go through a txt file with StreamReader , the problem I have is that I can never get past the first row of my txt file and I do not understand why.
I have dealt with a for and with a while but I only cycle on the first row...
Good I am trying to do one thing, I explain myself: Of a variable type text with several lines I want to extract in another variable the line that contains something
I've tried it in the following way:
$reporte strrpos(substr('$TextoGrande'...
Hello friends I am trying to process some txt's that I receive from a system other than mine, I need to take this information and store it in a table within my SQL Server , the question is that my data It comes separated by 2 characters, very l...