我想知道如何从字符串“TimeInterval 20”中获取字符串 20。
我知道使用下面的代码我可以获得存储在 cGetMinuteInterval 的字符串“TimeInterval”。
UINT iCount = strcspn("TimeInterval 20"," ");
strncpy_s(cGetMinuteInterval,MAXCHARSIZE,"TimeInterval 20",iCount);
但是如果我想要字符串“TimeInterval 20”中的字符串 20 并存储在 cGetMinuteInterval 怎么办。
谢谢和问候, Abhineet