阅读量:0
要交换字符串中的两个子串,可以使用replace()函数来实现。具体步骤如下:
- 首先找到要交换的两个子串在原字符串中的起始位置。
- 使用replace()函数将第一个子串替换成一个临时的占位符,例如"TEMP"。
- 将第二个子串替换成第一个子串。
- 将临时的占位符替换成第二个子串。
以下是一个示例代码:
def swap_substrings(input_string, substr1, substr2): # 找到两个子串在原字符串中的起始位置 index1 = input_string.find(substr1) index2 = input_string.find(substr2) # 使用replace()函数进行交换 temp_string = input_string.replace(substr1, "TEMP") temp_string = temp_string.replace(substr2, substr1) output_string = temp_string.replace("TEMP", substr2) return output_string input_string = "hello world" substr1 = "hello" substr2 = "world" output_string = swap_substrings(input_string, substr1, substr2) print(output_string)
在上面的示例中,我们定义了一个swap_substrings函数来实现字符串中两个子串的交换。然后我们将"hello"和"world"交换,并输出结果"world hello"。