我正在使用Google电子表格中的脚本。这很有意思,但我有一个问题。我想用字符串工作。我正在获取一个带有文本的单元格,在本文中我想进行修改。我想删除一些空格,找到并替换一些字符或添加更多文字。
我搜索了如何做到并没有找到任何东西。
所以我想知道如何实现这个目标?
答案 0 :(得分:0)
string.slice(startIndex,endIndex) 例如
import java.io.File;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.Response.ResponseBuilder;
@Path("/downloadfiles")
public class RestfulFiledownloadExample {
private static final String path = "c:\\log.txt";
@GET
@Path("/downloadtxt")
@Produces("text/plain")
public Response getFile() {
File file = new File(path);
ResponseBuilder response = Response.ok((Object) file);
response.header("Content-Disposition","attachment; filename=\"newfile.txt\"");
return response.build();
}
}