Skip to content

Commit 561c8d8

Browse files
authored
Update string-functions.md
fix manual line breaks
1 parent 8c012be commit 561c8d8

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

functions-and-operators/string-functions.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -163,10 +163,7 @@ Insert a substring at the specified position up to the specified number of chara
163163

164164
### [`INSTR()`](https://dev.mysql.com/doc/refman/8.0/en/string-functions.html#function_instr)
165165

166-
The `INSTR(str, substr)` function is used to get the index of the first occurrence of the second given argument `substr`
167-
in the first given argument `str`.
168-
Each argument can be either a string or a number.
169-
This function is the same as the two-argument version of [`LOCATE(substr, str)`](/functions-and-operators/string-functions.md#locate), but with the order of the arguments reversed.
166+
The `INSTR(str, substr)` function is used to get the index of the first occurrence of the second given argument `substr` in the first given argument `str`. Each argument can be either a string or a number. This function is the same as the two-argument version of [`LOCATE(substr, str)`](/functions-and-operators/string-functions.md#locate), but with the order of the arguments reversed.
170167

171168
> **Note:**
172169
>
@@ -231,8 +228,7 @@ SELECT INSTR(0123, "12");
231228

232229
### [`LCASE()`](https://dev.mysql.com/doc/refman/8.0/en/string-functions.html#function_lcase)
233230

234-
The `LCASE(str)` function is a synonym for [`LOWER(str)`](/functions-and-operators/string-functions.md#lower),
235-
which returns the given argument `str` with all characters changed to lowercase.
231+
The `LCASE(str)` function is a synonym for [`LOWER(str)`](/functions-and-operators/string-functions.md#lower), which returns the given argument `str` with all characters changed to lowercase.
236232

237233
### [`LEFT()`](https://dev.mysql.com/doc/refman/8.0/en/string-functions.html#function_left)
238234

@@ -252,8 +248,7 @@ Return the position of the first occurrence of substring.
252248

253249
### [`LOWER()`](https://dev.mysql.com/doc/refman/8.0/en/string-functions.html#function_lower)
254250

255-
The `LOWER(str)` function is used to convert the given argument `str` with all characters changed to lowercase.
256-
The argument can be either a string or a number.
251+
The `LOWER(str)` function is used to convert the given argument `str` with all characters changed to lowercase. The argument can be either a string or a number.
257252

258253
- If the argument is a string, the function returns the string in lowercase.
259254
- If the argument is a number, the function returns the number without leading zeros.

0 commit comments

Comments
 (0)