Files
Nim/lib/pure
Joachim Hereth d5780a3e4e strutils.multiReplace: Making order of replacement explicit (#23022)
In the docs for strutils.multiReplace:

Making it more explicit that left to right comes before the order in the
replacements arg (but that the latter matters too).

E.g.

```
echo "ab".multiReplace(@[("a", "1"), ("ax", "2")])
echo "ab".multiReplace(@[("ab", "2"), ("a", "1")])
```

gives

```
1b
2
```

resolves #23016
2023-12-02 22:41:53 +01:00
..
2023-11-17 10:22:57 +01:00
2015-10-01 12:05:45 -07:00
2021-01-09 00:24:41 +01:00
2022-12-03 21:25:49 +08:00
2023-03-20 18:51:58 +01:00
2021-02-08 09:46:07 +01:00