I need some help with editing some text in word 2007.
But i have trouble with some replacements, I think it would be easier for me if I use regular expressions but I don't know how to use them. I read some documentation on the internet but I still need help.
I need to macros for theses expressions:
- "alin. 1", "alin. 2" ... "alin. 999"
- into "alin. (1)", "alin. (2)" ... "alin. (999)"
- "alin. 1,", "alin. 2," ... "alin. 999,"
- into "alin. (1),", "alin. (2)," ... "alin. (999),"
- "alin.1", "alin.2" ... "alin.999"
- into "alin. (1)", "alin. (2)" ... "alin. (999)" (there is no space between alin. and the number)
- "lit. a", "lit. b" ... "lit. z"
- into "lit. a)", "lit. b)" ... "lit. z)" (after the letter in some cases i have space in other cases i have a comma)
- "lit.a", "lit.b" ... "lit.z" -
- into "lit. a)", "lit. b)" ... "lit. z)" (there is no space between lit. and the number)
- "385/1" .. "385/20", "370/5", "170/22"
- into "3851." .. "38520", "3705", "17022" (i need to replace /nr. to suprascript)
- "ind.1" .. "ind.20", "ind.5", "ind.22"
- into "1." .. "20", "5", "22" (i need to replace /nr. to suprascript)
- ": 1", ... ": 15", ": 99"
- into ":1", ... ":15", ":99"
- "/03 mai", "/15 mai", "/22 mai"
- into "dim 03 mai", "dim 15 mai", "dim 22 mai"
Is any way to apply regex to some of this replacements?
I have found a first solution for these:
- "lit. a", "lit. b" ... "lit. z" -> "lit. a)", "lit. b)" ... "lit. z)" (after the letter in some cases i have space in other cases i have a comma)
- "lit.a", "lit.b" ... "lit.z" -> "lit. a)", "lit. b)" ... "lit. z)" (there is no space between lit. and the number)
I am using these regex:
- "lit " ->
lit. - "lit. ^$" ->
^&)