请编写代码,删除字符串前端的空白字符。
时间: 2024-03-06 08:51:46 浏览: 39
以下是 Python 代码示例:
```python
string_with_spaces = " Hello, World!"
string_without_spaces = string_with_spaces.lstrip()
print(string_without_spaces) # 输出 "Hello, World!"
```
这里使用了字符串的 `lstrip()` 方法,它可以删除字符串前端的空白字符(包括空格、制表符、换行符等)。
相关问题
请编写C语言代码,删除字符串前端的空白字符。
以下是 C 语言代码示例:
```c
#include <stdio.h>
#include <string.h>
#include <ctype.h>
int main() {
char string_with_spaces[] = " Hello, World!";
int i = 0;
while (isspace(string_with_spaces[i])) {
i++;
}
char *string_without_spaces = string_with_spaces + i;
printf("%s", string_without_spaces); // 输出 "Hello, World!"
return 0;
}
```
这里使用了 C 标准库中的 `isspace()` 函数来判断字符是否为空白字符(包括空格、制表符、换行符等),然后使用循环找到第一个非空白字符的位置,最后将指针指向该位置即可。
阅读全文