Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,我正在尝试REGEXEXTRACT在导入的页面上执行来自数据的操作,但它正在分隔并进入数百列。
REGEXEXTRACT
=REGEXEXTRACT(IMPORTDATA("https://url.js"),"id.*")
使用IMPORTDATA时很方便将其包裹起来ARRAY_CONSTRAIN
IMPORTDATA
ARRAY_CONSTRAIN
=REGEXEXTRACT(ARRAY_CONSTRAIN(IMPORTDATA("https://url.js"), 500, 1), "id.*")