Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
文字列 s2 が s1 に存在するかどうかを確認する C 関数はありますか?
s1: "CN1 CN2 CN3" s2: "CN2" or "CG2"
s1 は修正済みで、s2 のバリアントが s1 に存在するかどうかを確認したい。
C++ ではなく C を使用しています。
他の人が述べたように、strstr() を使用する必要があります。C++ではなくCを使用していると述べたので、strstr()のGNU Cドキュメントへのリンクを追加しますが、この関数のC++ドキュメントはCにも適しています。
GNU C 文字列検索関数