Home > Software engineering >  Replace with VBA regular implementation in the word
Replace with VBA regular implementation in the word

Time:09-26

Select * in word file, for example, I want to convert into the select row
Need to consider a newline, to ensure that no change after the format change
Select
*

Wait for you a great god

CodePudding user response:

Like VBA regular does not support a newline

CodePudding user response:

Can't replace with find?
Lookup (check the wildcard) : [a zA - Z 0-9] {1, 6}
Lookup to select beginning, followed by letters, Numbers or Spaces 1-6 of characters (numeric range decision in curly braces, the actual situation decision),
Replace with: select the row
Consider a newline, what do you mean? Don't quite understand
  •  Tags:  
  • VBA
  • Related