Excel skill training 13 string manipulation functions mid,left,right,find,len,lenb,search,phonetic,extract

MID --  MID(text, start_num, num_chars)

Get the text, start from the start_num bit, intercept the num_chars bit

LEFT - LEFT(text, [num_chars])

Get the text from the left num_chars so long

RIGHT -- RIGHT(text, [num_chars])

Get the text from the right num_chars so long

Find -- FIND(find_text, within_text, [start_num])

Find the substring within_text from the string find_text, start searching from start_num

Len byte length, returns the byte length of the string

Lenb - character length

Do the following English extraction, the principle English part = byte length-(character length-byte length)

Serch -SEARCH(find_text,within_text,[start_num]), returns the position of the first occurrence of the substring

Supports wildcard characters (question mark ( ? ) And asterisk ( * )). The question mark matches any single character; the asterisk matches any string of characters. If you want to find the actual question mark or asterisk, type a tilde ( ~ ) before the character .

Text link

Connect two cells together with & directly

Phonetic function, link one area in one, note that this function does not support numbers and formulas

The EXTRACT function compares whether two cells are the same (it can be achieved by positioning, so I won’t introduce it here)

Char(10) line break

I2&char(10)F2, select automatic line wrapping to allow data to wrap

 

 

 

Guess you like

Origin blog.csdn.net/pengweismile/article/details/110351830