精选优质文档-倾情为你奉上实验三 查找匹配字符串1.实验目的: 查找匹配字符串SEARCH。 2. 实验要求: 程序接收用户键入的一个关键字以及一个句子。如果句子中不包含关键字则显示“No match!”;如果句子中包含关键字则显示“Match!”,且把该句子中的位置用十六进制数显示出来。实验结果: 要求程序的执行过程如下:Enter keyword:abcEnter Sentence: We are studying abc.Match at location:11H of the sentence.Enter Sentence: xyz, Ok?No match.Enter Sentence: C3. 实验报告要求: (1)分析要点及调试后的正确程序。 (2) 实验体会。源代码: DATAREA SEGMENTSTRING1 DB Enter keyword:$STRING2 DB Enter sentence:$STRING3 DB Match at location: