c/c++语言开发共享指针算术的问题 – 尝试标记输入字符串

目前我正在开发一个程序,允许用户输入一个字符串然后进行标记化,然后使用指针数组将标记打印到屏幕上。 通过调用我的tokenize函数来“执行”这个操作,该函数读取输入字符串直到第一个分隔符(”,’,’,’。’,’?’,’!’)。 然后它将我的字符串中的分隔符更改为NULL char。 然后它应该返回一个指向我的字符串中的下一个字符的指针。 在输入字符串之后的main中,它应该继续调用tokenize函数,该函数返回指针,然后存储在指针数组中以便稍后打印我的标记。 一旦tokenize()返回一个指向NULL字符的指针,该字符位于我的字符串的末尾,它就会从该循环中断开。 然后我使用我的指针数组打印出令牌。 //试图详细说明

#include  #include  char *tokenize ( char *text, const char *separators ); int main ( void ) { char text[30]; char separators[6] = { ' ','.',',','?','!',''}; char *pch = NULL; int tokens[15]; int i = 0; int j = 0; printf("Enter a string: n"); fgets( text, 30, stdin ); printf("%s", text ); pch = tokenize ( text, separators ); do { pch = tokenize ( pch, separators ); //printf("%c", *pch); tokens[i] = pch; i++; } while( *pch != NULL ); i--; while( j != i ) { printf("%s", tokens[i] ); j++; } return 0; } char *tokenize ( char *text, const char *separators ) { while( text != NULL ) { if( text != NULL ) { while( separators != NULL ) { if( text == separators ) { text = ''; } separators++; } } text++; } return text; } 

目前已知3大问题。 1.当我编译时,它读取字符串然后打印它,然后卡在无限循环中没有任何打印,仍然试图获得输入。 我很确定我在错误的地方使用“*”作为我的指针。 3.我的函数传递了对我的数组的引用,所以我假设我可以按原样递增它们。

我感谢任何反馈! 我会不断看这篇文章。 如果我留下一些不清楚的东西,我可以重新指定。 谢谢。

    你有正确的想法来解决问题,但你的代码中有很多pointer/int错误。 确保在启用警告的情况下编译代码,这将告诉您代码中的问题所在。 (在您解决并消除所有警告之前,不要指望您的代码能够正确运行)。 至少,在build命令中使用-Wall -Wextra选项进行编译。

    有很多简单的方法可以做到这一点,但对于学习体验,这是一个很好的练习。 以下是纠正错误的代码。 在可能的情况下,我已将您的原始代码留下commented以便您可以查看问题所在。 我还包含一些代码来删除text末尾fgets包含的newline 。 虽然这不是必需的,但最好不要让杂散的newlines过滤代码。

    如果您有任何疑问,请与我们联系:

     #include  #include  char *tokenize ( char *text, const char *separators ); int main ( void ) { char text[30]; char separators[6] = { ' ','.',',','?','!',''}; char *pch = NULL; char *tokens[15] = {0}; /* declare array of pointers */ int i = 0; int j = 0; printf("Enter a string: n"); fgets( text, 30, stdin ); size_t len = strlen (text); if (text[len-1] == 'n') /* strip newline from text */ text[--len] = 0; pch = text; /* pch pointer to next string */ char *str = text; /* str pointer to current */ do { pch = tokenize ( str, separators ); /* pch points to next */ tokens[i++] = str; /* save ptr to token */ str = pch; /* new start of str */ } while (pch != NULL && *pch != 0); /* test both pch & *pch */ printf ("nTokens collected:nn"); while (tokens[j]) /* print each token */ { printf(" token[%d]: %sn", j, tokens[j] ); j++; } printf ("n"); return 0; } char *tokenize ( char *text, const char *separators ) { const char *s = separators; /* must use pointer to allow reset */ //while( text != NULL ) while( *text != '' ) { s = separators; /* reset s */ while( *s != 0 ) /* 0 is the same as '' */ { //if( text == separators ) if( *text == *s ) { //text = ''; *text = ''; return ++text; } s++; } text++; } return text; } 

    输出示例:

     $ ./bin/tokenizestr Enter a string: This is a test string Tokens collected: token[0]: This token[1]: is token[2]: a token[3]: test token[4]: string 

    也许你会想看看strsep和这个post在C中使用分隔符的Split字符串如果你需要更多的参考点,试试搜索“split string”如果我理解正确你想要做的。

      以上就是c/c++开发分享指针算术的问题 – 尝试标记输入字符串相关内容,想了解更多C/C++开发(异常处理)及C/C++游戏开发关注计算机技术网(www.ctvol.com)!)。

      本文来自网络收集,不代表计算机技术网立场,如涉及侵权请联系管理员删除。

      ctvol管理联系方式QQ:251552304

      本文章地址:https://www.ctvol.com/c-cdevelopment/549314.html

      (0)
      上一篇 2021年1月14日
      下一篇 2021年1月14日

      精彩推荐