up vote 0 down vote favorite
1
share [g+] share [fb]

Ulimately I just wanted to extract strings from the .rc file so I could translate them, but anything that goes with .rc files works for me.

link|improve this question

I don't have any .rc files, can you give me a sample one so that I can create a regex for it? – Teifion Sep 10 '08 at 8:37
feedback

5 Answers

Maybe this helps? (http://social.msdn.microsoft.com/forums/en-US/regexp/thread/5e87fce9-ec73-42eb-b2eb-c821e95e0d31/)

They are using the following regex to find the stringtable in the rc source:

(?<=\bSTRINGTABLE\s+BEGIN\s+).*?(?=\s+END\b)

Edit - And you can read the key values pairs with the following statement with the MultiLine option:

@"\s+(.*?)\s+""(.*)""";

link|improve this answer
feedback

For a real-world project, you'll want to not only extract them but also put them back in. And keep track of updates. This is going to be unmanageable for anything but the most trivial applications. Take a look at specialized software like appTranslator (www.apptranslator.com). Not free but some regex parsing isn't going to cut it - I know, I've tried plenty.

link|improve this answer
feedback

Although rc files seems an obvious starting point for translation, it's not. The job of developers is to make sure the app is translatable. It's not to manage translations. Starting translations from the exe, although somewhat counter-intuitive, is a way better idea. Read more about it here: http://www.apptranslator.com/misconceptions.html

link|improve this answer
feedback

This sounds like a job for a SED script.

By running this command line: sed.exe -n -f sed.txt test.rc

The following SED script will extract all the quoted strings from the input test.rc file:

# Run Script Using This Command Line
#
#   sed.exe -n -f sed.txt test.rc
#

# Check for lines that contain strings
/\".*\"/ {
    # print the string part of the line only
    s/\(.*\)\(\".*\"\)\(.*\)/\2/ p
}
link|improve this answer
feedback

ResxCrunch will be out sometimes soon. It will edit multiple resource files in multiple languages in one single table.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.