我需要将import { Subscription } from "rxjs/Subscription";
private subscription: Subscription ;
ngOnInit() {
this.subscription = this.globalVarsService.selectedDepartment$.subscribe( selectDepartment => {
this.refreshReportData();
});
}
ngOnDestroy() {
this.subscription.unsubscribe();
}
替换为\
。
我有一个文件:
/
我试过
test\test2\test3\test4
输出
VRS_Ruta=$(cat ruta.lst | sed 's/^.//g' | sed 's,/,///,g' )
我需要:
test\test2\test3\test4
答案 0 :(得分:2)
您可以使用以下内容:
sed 's/\\/\//g'