Extract multiple values if present from cell in Google Spreadsheets

拈花ヽ惹草 提交于 2019-12-07 03:14:26

I found some regex features are not supported in Google Sheets so far.

Please, try this workaround:

=ArrayFormula(IFERROR(REGEXREPLACE(A3,REGEXREPLACE(A3,"(Rock|paper|scissors)","(.*)"),{"$1","$2","$3"})))


In step 1 this formula makes regex for step2:

[Rock] will search for letters R o c k. Instead, use (Rock)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!