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.
我正在构建一个简单的菜单,但提出了一个疑问:用户将拥有一些已定义的命令,例如,一个条目将是“compact image < filename >.jpeg”。如何从字符串中间获取文件名和扩展名?
使用strstr在“haystack”中查找“needle”的实例 - 例如,它将返回“.”的索引,您可以使用该索引构造包含文件名和扩展名的新字符串。
希望这可以帮助!
如果这是您需要从中获取文件名的字符串的实际示例,则可以: