Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write an ML function named parse : string -> int list that inputs the name of a text file. Your function will parse the text

Write an ML 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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions