在 [] 中提取 Google 表格中的文本
I'm trying to extract some text in a [] the data looks like this:
Basically I need the middle information, what I've tried was using split
but I don't need more columns and also tried to use =REGEXEXTRACT()
but did't work well some formulas suggestion please!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正则表达式
\[(.+?)\]
将捕获[
和]
之间的文本regex
\[(.+?)\]
will capture text between[
and]