如何在Bash中连接字符串变量

如何在Bash中连接字符串变量

本文介绍了如何在Bash中连接字符串变量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在PHP中,字符串按如下方式连接在一起:

In PHP, strings are concatenated together as follows:

$foo = "Hello";
$foo .= " World";

在这里,$foo变为"Hello World".

Here, $foo becomes "Hello World".

这是如何在Bash中完成的?

How is this accomplished in Bash?

推荐答案

foo="Hello"
foo="${foo} World"
echo "${foo}"
> Hello World

通常要串联两个变量,您可以将它们一个接一个地写:

In general to concatenate two variables you can just write them one after another:

a='Hello'
b='World'
c="${a} ${b}"
echo "${c}"
> Hello World

这篇关于如何在Bash中连接字符串变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-30 05:03