Question 1: I want to set up a topic about mass reading. What is a good name? Your idea is very good---mass reading-----you can use your name "mass reading" All meanings are covered.
Question 2: Yang Xiaogang’s artistic signature Massive Yang Xiaogang’s signature
Question 3: Dear customer, your current package usage is as follows: ◆Package name: Massive card (201605 online version ) ◇Mass Card (2 The remaining amount is how much traffic is left to use
Question 4: Add spaces to the B1 cell of the EXCEL table for names in batches:
=IF(LEN( A1)=2,LEFT(A1,1)& &RIGHT(A1,1),LEFT(A1,1)& &MID(A1,2,1)& &RIGHT(A1,1))
Drop-down Formula
Question 5: How to batch rename word files. Select all documents that need to be renamed, right-click - Rename, enter the name you need, for example, enter the date 2010-11-11, confirm, and the document name will be changed. Appeared on 2010-11-11 (1), 2010-11-11 (3). . . . . . . .
Reference: zhidao.baidu/question/196937506
Question 6: Batch processing, batch naming of files based on folder names is easy to handle.
Question Seven: Add suffixes to the file names in batches. Just save the following code in bat format and run it. @echo off
for /r The path to the folder is %%i in (*.*). do (
ren %%i %%~ni_shopname.*
)
pause Example: @echo off
for /r c:\1\ %%i in (*.*) do (
ren %%i %%~ni_SeN.*
)
pause
Question 8: Who knows what Eason Chan’s English name means? His English name is Hao
Maung Fen’s pronunciation of “Eason” is very similar to that of “Eason”. Is the pronunciation of Joey Yung's English name "Joey" very similar to that of "Joey"?
There are many other singers like me. The English names have similar pronunciations to their own names
Question 9: Is there a way to change the suffixes in batches, such as changing uppercase to lowercase? The easiest way is to use third-party software, such as Invincible Batch Master , or the most commonly used ACDSEE also has this function. You can also use batch processing to solve it. Open Notepad and write ren *.JPG *.jpg in it (for example, the suffix you want to change is JPG), and then save it as a .bat file. Then put this file in the file you want. To change the directory of the file, just double-click it.