将字符串中的空格替换为下划线
时间: 2024-10-15 08:21:45 浏览: 40
将字符串中的空格替换为下划线是一个常见的文本处理任务,在很多编程语言中都可以通过内置函数或者自定义函数轻松完成。下面是一些示例:
**Python:**
```python
def replace_spaces_with_underscore(s):
return s.replace(" ", "_")
# 使用示例
s = "Hello World"
new_s = replace_spaces_with_underscore(s)
print(new_s) # 输出: Hello_World
```
**JavaScript:**
```javascript
function replaceSpacesWithUnderscore(str) {
return str.replace(/\s/g, '_');
}
// 使用示例
let s = "Hello World";
let newS = replaceSpacesWithUnderscore(s);
console.log(newS); // 输出: Hello_World
```
**Java:**
```java
public String replaceSpaces(String input) {
return input.replaceAll("\\s", "_");
}
// 使用示例
String s = "Hello World";
String newS = replaceSpaces(s);
System.out.println(newS); // 输出: Hello_World
```
阅读全文