How can i extract date in arabic and replace

Get help with installation and running here.

Moderators: DataMystic Support, Moderators, DataMystic Support, Moderators, DataMystic Support, Moderators

Post Reply
support1
Posts: 2
Joined: Sat Sep 24, 2005 11:01 pm

How can i extract date in arabic and replace

Post by support1 »

Hi all,
i have MAC arabic text which has date strings like 05/11/1426 but when converted to UTF8 using the filter "MacArabic to UTF8" everything is converted, except i find the date string above is converted as 5111426, the "/" being stripped, how can i retain the above date string.Please Help
User avatar
DataMystic Support
Site Admin
Posts: 2227
Joined: Mon Jun 30, 2003 12:32 pm
Location: Melbourne, Australia
Contact:

Post by DataMystic Support »

You could use the EasyPattern

Code: Select all

[ capture(day), capture(monthnumber), capture(4 digits) ]
Replace with

Code: Select all

$1/$2/$3
Post Reply