在使用 C 的 STDIN 一段时间后按下 Tab 键时,如何自动填充文本?
输入看起来像,
C:\>autofil.exe Hello
C:\>autofil.exe Hello. ( When I enter a period, it should autofil Hello after the period)
C:\>autofil.exe Hello.World *World is autofilled when period was entered.
第二个要求是如果我在
C:\>autofil.exe Hello.World (And when i press Tab key, `World` should print with other suggestions, as `Friend`, and if I press Tab again, print `Matt`, and scroll so on when tab is pressed... )
嗯,这是我的要求。选项卡完成以自动填充文本。另外,想知道如何从 STDIN 读取 Tab 键。
谢谢!