regex 如何使用正则表达式在文本字段的第一行的开头和结尾添加括号?

olmpazwi  于 2023-06-25  发布在  其他
关注(0)|答案(1)|浏览(92)

我有以下文本字段:

The blue bus drove by

Key features:
It is red in color
It is smaller than a dog
It is bigger than a cat

但是我需要在文本的第一行周围加上括号,如下所示:

[The blue bus drove by]

Key features:
It is red in color
It is smaller than a dog
It is bigger than a cat

我必须这样做的多个字段的文本没有匹配的功能(除了每个样本的第一行是粗体,所以也许如果有一种方法添加括号之前和之后所有粗体行?).
是否有任何方法使用正则表达式只在字段的第一行添加方括号?
我尝试了以下方法,它在行首添加了一个括号。
查找:^\A(.*)$
更换:[$1
我尝试过以下方法,但它在整个文本字段的末尾添加了一个方括号,而不是在第一行。
查找:^(.*)$\z
更换:$1]
所以我的领域最终看起来像

[The blue bus drove by

Key features:
It is red in color
It is smaller than a dog
It is bigger than a cat]

相关问题