网站首页
编程语言
数据库
系统相关
其他分享
编程问答
arrIndex
2024-11-21
C语言,如何进行多次分割,获取的到多个字符串,组成一个数组
如"A|B|C|D"根据|分割,得到数组["A","B","C","D"]char*propertyArr[4]={"-1","-1","-1","-1"};custom_string("A|B|C|D","|",propertyArr,4);voidc