我有字符串,并且有很多字符是“ \”,所以我想删除所有字符,但是当我使用
string.replace("\\","");
它仅删除第一个字符。响应式中没有replaceAll。我该怎么办?
答案 0 :(得分:3)
在您的replace
中使用正则表达式。
示例:
const string = "aaabbbcccaaa";
// Removes first "a" only
console.log(string.replace("a", ""));
// Removes all "a"
console.log(string.replace(/a/g, ""));
答案 1 :(得分:2)
您必须使用带有<div class="table-responsive" *ngIf="laboratories">
<table class="table table-striped">
<thead>
<tr>
<th><span>ID</span></th>
<th><span>Name</span></th>
<th><span>Adress</span></th>
<th></th>
</tr>
</thead>
<tbody>
<tr *ngFor="let laboratory of laboratories | filter:searchText ;trackBy: trackId">
修饰符的正则表达式,这表示g
,它将根据需要多次应用该正则表达式。您可以使用tool like this来构建和测试您的正则表达式。
globally