import java.io.*;
import java.util.*;
public class SortF {
public static void main(String[] args) {
try {
BufferedReader in = new BufferedReader(
new FileReader("FFile.txt"));
String s2 = new String();
s2 = in.toString();
in.close();
String[] F = s2.split(" ");
System.out.println();
for(int...
I am trying to write a program using Visual Basic.Net / 6.0 that will search through a very long piece of text pasted into a text-box.
Inside the text-box are patterns of numbers like this, representing a file number
12345-123456
12345-123456-1234
1234
and patterns of numbers with letters...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.