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.
我在 C 代码中有字符串,其中字符串中的所有字符都是唯一的。我想从此字符串中获取所有子字符串,排除空字符串并获取字符串。我怎样才能做到这一点?
例如: String: "12a" 我需要得到:'1', '2', 'a', "12", "1a", "2a"。
PS在我的问题中,集合由字符串集表示,子集由子字符串表示。