3 Solved Topics

Remove Filter
Member Avatar for
Member Avatar for DawnofanewEra

Hello, I've been trying to read txt from a file, and breaking each line into words and storing them in Array. Example. txt file C001 John Smith 999999 C002 Mary Agnes 888888 Here is my code. public class Customer implements iCommand{ static List<Customer> cust = new ArrayList<Customer>(); static private String …

Member Avatar for niranga
0
2K
Member Avatar for FearlessHornet

I have been working on a few projects and needed a method similar to pythons string.split(). I decided to make a reusable piece of code and export it as a .dll, the code is below: std::vector<std::string> Editor::StringHandler::Split(std::string data, std::string tokens) std::vector<std::string> returnList; std::string temp=""; bool found=false; for (auto i : …

Member Avatar for FearlessHornet
0
542
Member Avatar for Reverend Jim

Anyone care to recommend a good file split/join utility? I want to use TeamViewer's file transfer feature to send files to my son in Long Island and I want to split large files into smaller chunks so that if there is an error/dropout I don't have to resend the entire …

Member Avatar for Reverend Jim
0
334

The End.