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.
2 番目の要件は、私が
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 キーを読み取る方法を知りたいです。
ありがとう!