Я пытаюсь получить массив токенов с помощью функции strtok_s (), НО я также хочу включить разделитель, в котором массив был токенизирован. Если это косая черта "/", я хочу, чтобы массив имел косую черту, где бы ни был токен, созданный с использованием символа косой черты "/".
Я написал функцию, которая принимает строку и разделитель и возвращаетдругая строка с токенами и разделителем.
Однако, это не работает, как ожидалось, и я понятия не имею, почему. Кроме того, я не очень хорош с языком Си.
Буду признателен за любую помощь или руководство в правильном направлении.
Ниже приведен мой основной файл cpp и вывод консоли
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
struct token_stat {
int n; // for total items in array
char* r_array; // pointer to the array returned from function
};
// function for passing a string and a delimeter and getting back
// the array with tokenized items including the delimeter
token_stat append_token_delim(char* string_in, char splitter[])
{
token_stat result;
char* token = NULL ; // initialize variables for STRTOK_S func
char* next_token = NULL ;
char* token_accum = (char*)malloc(2*sizeof(string_in)) ; // allcate memory twice that of the string we are tokenizing
char* delim = splitter; // pointer to the delimeter in main function
int i = 0;
token = strtok_s(string_in, delim, &next_token); // first call and getting the token
while (token != NULL)
{
token_accum[i] = token[0]; // add the token to token_accum array
token_accum[i + 1] = *delim; // now add the delimeter character next to the 1st token
printf("%s\t%s\n", token, delim); // print token and the delimeter
token = strtok_s(NULL, delim, &next_token); // make call again to strtok to get next token
i = i + 2; // increment index by 2 to get to the next token
}
int numberOfTokens = sizeof(*token_accum) / sizeof(token_accum[0]); // get total items in token_accum array for printing in main
result.n = numberOfTokens; // passing values to TOKEN_STAT STRUCT
result.r_array = token_accum; // passing the array to STRUCT
return result; // returning the struct back
}
// printing the array
void print_tokens(token_stat in_array)
{ printf("Number of Tokens in Array; %d", in_array.n);
}
int main()
{
char str[] = "- Thi;s,ansample()str;ing.";
token_stat main_accum;
char delimeter = '/';
main_accum = append_token_delim(str, &delimeter);
print_tokens(main_accum);
return 0;
}