We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2f8d05 commit 3ef8eedCopy full SHA for 3ef8eed
README.md
@@ -183,9 +183,9 @@ String schemeStripped = Substring.first("://").andBefore().removeFrom(uri);
183
184
**Example 3: split a string in the format of "name=value" into `name` and `value`:**
185
```java
186
-Substring eq = Substring.first('=').in(nameValue).orElseThrow(...);
187
-String name = eq.getBefore();
188
-String value = eq.getAfter();
+Substring op = Substring.first('=').in(nameValue).orElseThrow(...);
+String name = op.getBefore();
+String value = op.getAfter();
189
```
190
191
**Example 4: replace trailing "//" with "/" :**
0 commit comments