汇编:查找匹配字符串
功能要求程序接收用户键入的一个关键字以及一个句子。如果句子中不包含关键字则显示‘No match!’;如果句子中包含关键字则显示‘Match’,且把该字在句子中的位置用十六进制数显示出来。assume cs:code, ds:data, ss:stackdata segment tips db 'The location of the keyword is: 0X','$' match db 'Match!','$' nmatch db 'No Match!','$'