标签: excel
我想使用Excel执行以下操作:
在AX列中,它有一个很长的描述,我想从中找到文本5.0-Rated.png,然后将5.0 out of 5.0 stars添加到目前有AY的列positions[i] = glm::vec3(rand() % 10 - 1, rand() % 10 - 1, rand() % 10 - 1); 值为0.
AX
5.0-Rated.png
5.0 out of 5.0 stars
AY
positions[i] = glm::vec3(rand() % 10 - 1, rand() % 10 - 1, rand() % 10 - 1);
我想将其添加到整个列中。
感谢。
答案 0 :(得分:1)
这应该可以解决问题,放在AY1并按照您喜欢的方式向下拖动
AY1
=MID(AX1,SEARCH("?.?-rated.png",AX1),3)&" out of 5.0 stars"
#VALUE!
IFERROR
=IFERROR(MID(AX1,SEARCH("?.?-rated.png",AX1),3)&" out of 5.0 stars","")