Reply
 
Thread Tools Display Modes
  #1   Report Post  
Michael McCain
 
Posts: n/a
Default How do I change Hindi number to Arabic numbers in a Word document.

I translated an Arabic document into English using TRADOS 6.5 on a Windows
XP system with Word 2002. All of the numbers are still in hindi format. Is
there a way to automatically convert them to Arabic numerals, ie 1, 2, 3...)?

Regards,

Michael McCain
Freelance Translator
mccainlanguages.com
  #2   Report Post  
Klaus Linke
 
Posts: n/a
Default

Hi Michael,

If they're done with auto-numbering, you could just change the numbering =
style.
If they're "hard" text, you can probably use the macro below to toggle =
between arabic and Devangari numbers:

' toggles between Devangari and arabic numbers;
' select numbers, then run the macro (for example using
' a keyboard shortcut)
Dim myString As String
myString =3D Selection.Text
Dim myCode As Long
Dim i As Long
For i =3D 1 To Len(myString)
myCode =3D AscW(Mid(myString, i, 1))
Select Case myCode
Case AscW("0") To AscW("9")
Mid(myString, i, 1) =3D ChrW(&H936 + myCode)
Case &H966 To &H96F
Mid(myString, i, 1) =3D ChrW(myCode - &H936)
Case Else
' do nothing
End Select
Next i
Selection.Text =3D myString

If you haven't used macros before, see =
http://www.word.mvps.org/FAQs/Macros...eateAMacro.htm

Regards,
Klaus



"Michael McCain" wrote:
I translated an Arabic document into English using TRADOS 6.5 on a =

Windows=20
XP system with Word 2002. All of the numbers are still in hindi =

format. Is=20
there a way to automatically convert them to Arabic numerals, ie 1, 2, =

3...)?
=20
Regards,
=20
Michael McCain
Freelance Translator
mccainlanguages.com

  #3   Report Post  
michael mccain via OfficeKB.com
 
Posts: n/a
Default

In a few quick tests, changing the numbering style in Word seems to work.
Thanks for the feedback.

Michael McCain
Translator

--
Message posted via http://www.officekb.com
Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I get page numbers in a TOC to change as the Word document. Lori Microsoft Word Help 1 February 25th 05 08:01 PM
section page numbers in heading and total page number in footing Desparate Word user Microsoft Word Help 4 January 7th 05 10:01 PM
change numbers in a column and continue number's in seq onto each. nhtpclerk Tables 1 December 10th 04 08:47 PM
Write numbers in Arabic Nozha Microsoft Word Help 1 December 9th 04 11:23 AM
change numbers to fractions-it changes 1/2 but not 1/3 motherneedshelp Microsoft Word Help 2 November 25th 04 08:33 AM


All times are GMT +1. The time now is 08:31 AM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"