我将如何解析这样的文件:
Item costs $15 and is made up of --Metal--
Item costs $64 and is made up of --Plastic--
Run Code Online (Sandbox Code Playgroud)
我可以
Pattern p = Pattern.compile(regex);
Matcher m = p.matcher(input);
String result = m.group();
Run Code Online (Sandbox Code Playgroud)
但是我怎么能得到每一个结果呢?
我希望能够通过NAudio.WaveIn从麦克风设备获取输入,然后通过NAudio.WaveOut将精确输入输出到输出设备.
我该怎么做?