SOLVED

Challenge 6

Brass Contributor

Hi Every one

I have problem in Separate the English Letter from Arabic Text  in Excel,
Ho can I Separate English letter from Arabic text in Excel  ? as i showed in attachments,


I want to separate the Brand from Description as I show in Excel file,
Thank you for your cooperation in advance

2 Replies
best response confirmed by Jalal_1988 (Brass Contributor)
Solution

@Jalal_1988 

If your Excel supports dynamic arrays, to remove Arabic characters

=TRIM(CONCAT(CHAR(FILTER(UNICODE(MID(B3,SEQUENCE(1,LEN(B3)),1)),UNICODE(MID(B3,SEQUENCE(1,LEN(B3)),1))<126))))

and if brand is always two-characters code, take first two from the left

image.png

@Jalal_1988 

 

It seems this is not Arabic language. It seems Urdu or Persian. Anyways

 

here is a solution without dynamic arrays

Also assuming we collect the 1st two letters

 

Regards

 

1 best response

Accepted Solutions
best response confirmed by Jalal_1988 (Brass Contributor)
Solution

@Jalal_1988 

If your Excel supports dynamic arrays, to remove Arabic characters

=TRIM(CONCAT(CHAR(FILTER(UNICODE(MID(B3,SEQUENCE(1,LEN(B3)),1)),UNICODE(MID(B3,SEQUENCE(1,LEN(B3)),1))<126))))

and if brand is always two-characters code, take first two from the left

image.png

View solution in original post