阅读量:0
可以编写一个函数来实现删除字符串首尾的星号,具体步骤如下:
- 定义一个函数,例如removeStars,接收一个字符串作为参数。
- 使用while循环遍历字符串,找到第一个不是星号的字符的位置,记为start。
- 使用while循环倒序遍历字符串,找到第一个不是星号的字符的位置,记为end。
- 使用substr函数获取字符串start到end之间的子串,即为去除首尾星号后的字符串。
- 返回去除首尾星号后的字符串。
以下是一个示例代码:
#include <stdio.h> #include <string.h> char* removeStars(char* str) { int start = 0; int end = strlen(str) - 1; while(str[start] == '*') { start++; } while(str[end] == '*') { end--; } return str + start; } int main() { char str[] = "****Hello, World!****"; char* result = removeStars(str); printf("Result: %s\n", result); return 0; }
在上面的示例中,removeStars函数会去除字符串str中的首尾星号,并返回去除星号后的字符串。