0% found this document useful (0 votes)
6 views1 page

Assign 142

The document lists various text functions along with their details and examples. Functions include CONCATENATE, FIND, SEARCH, REPLACE, LEFT, RIGHT, LEN, LOWER, UPPER, MID, REPT, TRIM, and PROPER. Each function is described with its purpose and an example output.

Uploaded by

SUHAN JUNEJA
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views1 page

Assign 142

The document lists various text functions along with their details and examples. Functions include CONCATENATE, FIND, SEARCH, REPLACE, LEFT, RIGHT, LEN, LOWER, UPPER, MID, REPT, TRIM, and PROPER. Each function is described with its purpose and an example output.

Uploaded by

SUHAN JUNEJA
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Text Functions

S. No. Function Name Function Details


1 CONCATENATE concatenates two strings
2 FIND returns the starting position of one text within another
3 SEARCH returns the number of characters at which the character is found
4 REPLACE replaces a part of string with another
5 LEFT returns the specific characters from left
6 RIGHT returns specific characters from right
7 LEN returns the length of the string
8 LOWER converts everything to lowercase
9 UPPER converts everything to uppercase
10 MID returns characters from the middle of the string
11 REPT repeats text to a given number of times
12 TRIM removes all spaces
13 PROPER converts text to proper case

Text Functions
S. No. Function Name Function Output
1 CONCATENATE =concatenate("ww","xx") wwxx
2 FIND =FIND("sr","srrsdsd",1) 1
3 SEARCH =SEARCH("sr","srrssdf",1) 1
4 REPLACE =REPLACE("Suhan",1,4,"trt")
trtet
5 LEFT =LEFT("Suhan",3) suh
6 RIGHT =RIGHT("Suhan",3) eet
7 LEN =LEN("Suhan") 6
8 LOWER =LOWER("Suhan") suhan
9 UPPER =UPPER("suhan") Suhan
10 MID =MID("Suhan",1,4) suha
11 REPT =REPT("gg",4) gggggggg
12 TRIM =TRIM(" suhan ") Suhan
13 PROPER =PROPER("Suhan") suhan

You might also like