如果在使用正则表达式
的notepad ++中找到匹配项,我想向上删除3行实施例
LINE 1
LINE 2
LINE 3
LINE 4
LINE 5
LINE 6
LINE 7
如果正则表达式匹配LINE 5
,那么输出必须像
LINE 1
LINE 2
LINE 6
LINE 7
我尝试了许多替换模式但没有成功。请帮助我。
答案 0 :(得分:1)
get(uri: string) {
return this._http.get("your uri", { headers: "your headers"}).map(this.extractData);
}
private extractData(response: Response) {
let data = response.json();
return data || {}
}
描述
this._httpProviderService.get("/api/product_category/GET/categories")
.subscribe(result => {
this.productCategories = result;
});
}