In the D programming language once you read a text file using auto MyDictionary = import ("dictionary.txt"); how can you parse this into a string array stripping the CrLf from the end of each line?
-
I suspect there is some variant of the split library function that will parse it into a string array for me but because CrLf is 2 characters I'm not sure if there is a way to do this with a one line call to a lib function. And as I understand it this file is read in at compile time so after it has been parsed into the string array, is there a way to free the storage that was used by the variable MyDictionary.
-
Answer:
This page came up in a search result, so I thought I'd answer it:splitLines is the function you are looking for. No you can't free data from the data section of the executable. If splitLines is just taking slices of the data section then you wouldn't want it freed because its still technically in use by the string[]. import std.string : splitLines; enum strings = import("dictionary.txt").splitLines; enum is the part that makes sure it happens at compile time.If you wanted to do this at runtime you would do: import std.string : splitLines; import std.file : readText; auto strings = readText("dictionary.txt").splitLines;
Rory McGuire at Quora Visit the source
Related Q & A:
- how to parse a xml file using jquery and phonegap?Best solution by Stack Overflow
- How to read a PDF file with PHP?Best solution by Stack Overflow
- How to Creating text File using Python?Best solution by Stack Overflow
- How to search for a particular string in a text file using java?Best solution by Stack Overflow
- How do I open a .doc file using yahoo mail?Best solution by answers.yahoo.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.