如何在一串字符串后加字符串
时间: 2024-10-30 07:04:16 浏览: 2
在大多数编程语言中,将两个字符串连接在一起通常非常简单。下面是一些常见语言的例子:
1. **Python**:
```python
str1 = "Hello"
str2 = "World"
result = str1 + " " + str2
print(result) # 输出:Hello World
```
2. **JavaScript**:
```javascript
let str1 = 'Hello';
let str2 = 'World';
let result = str1 + ', ' + str2;
console.log(result); // 输出:Hello, World
```
3. **Java** (使用`+`操作符):
```java
String str1 = "Hello";
String str2 = "World";
String result = str1 + " " + str2;
System.out.println(result); // 输出:Hello World
```
4. **C#** (使用`+`操作符或`string.Concat()`方法):
```csharp
string str1 = "Hello";
string str2 = "World";
string result = $"{str1} {str2}";
Console.WriteLine(result); // 输出:Hello World
```
5. **C++** (使用`+`运算符或`std::string::append()`方法):
```cpp
std::string str1 = "Hello";
std::string str2 = "World";
str1 += " " + str2;
std::cout << str1; // 输出:Hello World
```
要添加字符串,只需将它们用某种连接符(如空格、逗号等)串联起来。
阅读全文