Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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:

  1. "lit " -> lit.
  2. "lit. ^$" -> ^&)
share|improve this question
I know you asked for regular expression but if you want to use VBA, then the Word wildcard search may work. Find something like (alin.) ([0-9]) and replace with \1 (\2). The parentheses in Word wildcard from replacement groups, so that \1 refers to the first set of parentheses, \2, the second set, and so on. Also, Stackoverflow is about code, so please provide your attempted code in the future. – ForEachLoop Aug 15 '12 at 14:41

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.