有没有一种简单的方法可以替换Elm中的一部分字符串?我对没有正则表达式的普通搜索感兴趣。 (而且我知道我无法更改字符串,我很高兴能够获得一个新的字符串。)
答案 0 :(得分:8)
我能想到的最简单的方法:
table, th, td {
border: 1px solid black;
}
table col.col-color, table td[colspan="3"]{
background-color: yellow;
}
<table>
<colgroup>
<col span="2" style="background-color:red">
<col class="col-color">
</colgroup>
<tr>
<th>ISBN</th>
<th>Title</th>
<th>Price</th>
</tr>
<tr>
<td colspan="3">Error descriotion, last col should be yellow</td>
</tr>
<tr>
<td>5869207</td>
<td>My first CSS</td>
<td>$49</td>
</tr>
</table>
答案 1 :(得分:3)
我知道,string-extra包提供replace
。
答案 2 :(得分:2)