Google Sheets 用 - 替换空格,删除括号和句点

Google Sheets replace spaces with -, remove parentheses and periods

我正在尝试从 Google Sheet.

中的某些数据生成要在 URL 中使用的字符串

这是一个数字或行

Logan
Louisville
North Seattle (Lynnwood)
Mesa
Minneapolis
Nashville
National City
St. Paul (Oakdale)
Oklahoma City

我需要用 - 替换空格,然后删除所有句点或括号。 这就是我现在所在的位置,它适用于空格,但不确定句点和括号的位置

substitute(lower(A1)," ","-")

我会在 lower() 中使用 REGEXREPLACE 来查找句号和括号吗?

寻找

的输出
logan
louisville
north-seattle-lynnwood
mesa
minneapolis
nashville
national-city
st-paul-pakdale
oklahoma-city

谢谢

尝试:

=INDEX(LOWER(REGEXREPLACE(REGEXREPLACE(A1:A, "[\(\).]", ), " ", "-")))