@ -12,7 +12,7 @@ The CONCAT function concatenates one or more strings into a single string.
#### Syntax
```plaintext
CONCAT(str1, [str2 ,...])
CONCAT(text, [text ,...])
```
#### Sample
@ -21,11 +21,11 @@ CONCAT('John', ' ', 'Doe') => 'John Doe'
```
## LEFT
The LEFT function retrieves the first 'n' characters from the beginning of the input string.
The LEFT function retrieves the first 'n' characters specified from the beginning of the input string.
#### Syntax
```plaintext
LEFT(str1, n )
LEFT(text, count )
```
#### Sample
@ -38,12 +38,12 @@ The LEN function calculates and returns the total number of characters present i
#### Syntax
```plaintext
LEN(str )
LEN(text )
```
#### Sample
```plaintext
LEN('Product Description') => 18
LEN('Product Description') => 19
```
## LOWER
@ -51,7 +51,7 @@ The LOWER function transforms all characters in the input string to lowercase
#### Syntax
```plaintext
LOWER(str )
LOWER(text )
```
#### Sample
@ -64,7 +64,7 @@ The MID function retrieves a substring from the input string starting at the spe
#### Syntax
```plaintext
MID(str , position, [count])
MID(text , position, [count])
```
#### Sample
@ -77,7 +77,7 @@ The REGEX_EXTRACT function searches the input string for the first occurrence of
#### Syntax
```plaintext
REGEX_EXTRACT(str , pattern)
REGEX_EXTRACT(text , pattern)
```
#### Sample
@ -90,7 +90,7 @@ The REGEX_MATCH function evaluates whether the input string matches the specifie
#### Syntax
```plaintext
REGEX_MATCH(str , pattern)
REGEX_MATCH(text , pattern)
```
#### Sample
@ -103,7 +103,7 @@ The REGEX_REPLACE function identifies all occurrences of the specified regular e
#### Syntax
```plaintext
REGEX_REPLACE(str , pattern, replacer)
REGEX_REPLACE(text , pattern, replacer)
```
@ -117,7 +117,7 @@ The REPEAT function duplicates the provided string the specified number of times
#### Syntax
```plaintext
REPEAT(str , count)
REPEAT(text , count)
```
#### Sample
@ -130,7 +130,7 @@ The REPLACE function identifies all instances of a particular substring within t
#### Syntax
```plaintext
REPLACE(str , srchStr, rplcStr)
REPLACE(text , srchStr, rplcStr)
```
#### Sample
@ -143,7 +143,7 @@ The RIGHT function retrieves the last 'n' characters from the end of the input s
#### Syntax
```plaintext
RIGHT(str , n)
RIGHT(text , n)
```
#### Sample
@ -156,12 +156,12 @@ The SEARCH function identifies the position of the specified substring within th
#### Syntax
```plaintext
SEARCH(str , srchStr)
SEARCH(text , srchStr)
```
#### Sample
```plaintext
SEARCH('user@example.com', '@') => 4
SEARCH('user@example.com', '@') => 5
```
## SUBSTR
@ -169,12 +169,12 @@ The SUBSTR function extracts a substring from the input string, starting at the
#### Syntax
```plaintext
SUBSTR(str , position, [count])
SUBSTR(text , position, [count])
```
#### Sample
```plaintext
SUBSTR('Extract this text', 8 , 4) => 'this'
SUBSTR('Extract this text', 9 , 4) => 'this'
```
## TRIM
@ -182,7 +182,7 @@ The TRIM function eliminates any leading or trailing whitespaces from the input
#### Syntax
```plaintext
TRIM(str )
TRIM(text )
```
#### Sample
@ -195,7 +195,7 @@ The UPPER function transforms all characters in the input string to uppercase.
#### Syntax
```plaintext
UPPER(str )
UPPER(text )
```
#### Sample
@ -208,12 +208,12 @@ The URL function checks if the input string is a valid URL and converts it into
#### Syntax
```plaintext
URL(str )
URL(text )
```
#### Sample
```plaintext
URL('https://www.example.com') => '< a href = "https://www.example.com" > https://www.example.com< / a > '
URL('https://www.example.com') => a clickable link for https://www.example.com
```