Question: Write a Standard ML of New Jersey function named parse : string -> int list that inputs the name of a text file. Your function

Write a Standard ML of New Jersey function named parse : string -> int list that inputs the name of a text file. Your function will parse the text file character by character. The output will be a list of all the integers contained in the file. The goal of this project is to build your own parser by examining the file character by character and deciding what to do.

For example, if the text file is named input.txt and contains:

 d3%~19^fgh54 78nm,.j 1.2k~789bv

Then your function should work as follows:

 - parse("input.txt"); 
 val it = [3,~19,54,78,1,2,~789] : int list

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!