File tree 1 file changed +10
-10
lines changed
1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -2,16 +2,16 @@ MySQL already supports a [number of string functions natively](http://dev.mysql.
2
2
3
3
The following functions are currently supported in the ` lib_mysqludf_str ` library:
4
4
5
- 1 . ` str_numtowords ` – converts a number to a string.
6
- 2 . ` str_rot13 ` – performs the ROT13 transform on a string.
7
- 3 . ` str_shuffle ` – randomly shuffles the characters of a string.
8
- 4 . ` str_translate ` – replaces characters contained in srcchar with the corresponding ones in dstchar.
9
- 5 . ` str_ucfirst ` – uppercases the first character of a string.
10
- 6 . ` str_ucwords ` – transforms to uppercase the first character of each word in a string.
11
- 7 . ` str_xor ` – performs a byte-wise exclusive OR (XOR) of two strings.
12
- 8 . ` str_srand ` – generates a string of cryptographically secure pseudo-random bytes.
13
-
14
- Use ` lib_mysqludf_str_info() ` to obtain information about the currently-installed version of ` lib_mysqludf_str ` .
5
+ - [ ` str_numtowords ` ] ( #str_numtowords ) – converts a number to a string.
6
+ - [ ` str_rot13 ` ] ( #str_rot13 ) – performs the ROT13 transform on a string.
7
+ - [ ` str_shuffle ` ] ( #str_shuffle ) – randomly shuffles the characters of a string.
8
+ - [ ` str_translate ` ] ( #str_translate ) – replaces characters contained in srcchar with the corresponding ones in dstchar.
9
+ - [ ` str_ucfirst ` ] ( #str_ucfirst ) – uppercases the first character of a string.
10
+ - [ ` str_ucwords ` ] ( #str_ucwords ) – transforms to uppercase the first character of each word in a string.
11
+ - [ ` str_xor ` ] ( #str_xor ) – performs a byte-wise exclusive OR (XOR) of two strings.
12
+ - [ ` str_srand ` ] ( #str_srand ) – generates a string of cryptographically secure pseudo-random bytes.
13
+
14
+ Use [ ` lib_mysqludf_str_info() ` ] ( #lib_mysqludf_str_info ) to obtain information about the currently-installed version of ` lib_mysqludf_str ` .
15
15
16
16
## Installation
17
17
You can’t perform that action at this time.
0 commit comments