简单的字符串替换在榆树?

时间:2016-12-13 10:46:02

标签: string elm

有没有一种简单的方法可以替换Elm中的一部分字符串?我对没有正则表达式的普通搜索感兴趣。 (而且我知道我无法更改字符串,我很高兴能够获得一个新的字符串。)

3 个答案:

答案 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>

https://runelm.io/c/f07

答案 1 :(得分:3)

我知道,string-extra包提供replace

答案 2 :(得分:2)

当前的Elm(0.19.0+)版本包括String.replace in elm/core

示例:

String.replace ":" "" "06:00" == "0600"

Ellie