Skip to content

MrLibya/ArabicString

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

result

Arabic MAP : https://en.wikipedia.org/wiki/Arabic_script_in_Unicode

ArabicString

لتعريف وطباعه وادخال متغيرات بلغه العربيه ف الكونسل

كيفية التركيب

قم بإضافة الملفين للمشروع الخاص بك ققط ويجب عليك وضع الترميز : UTF-8-BOM

أمثله

#include <iostream>
#include "arabicstring.h"
using namespace std;

int main()
{
	ArabicString::goArabic();// to set arabic out/in console

	ArabicString test = L"اتز هيما ساما";
	test.makeShape(); // لصنع شكل نص المتغير
	wcout << test.getText() << endl; // ارجاع النص
	wcout << test.getShape() << endl; // ارجاع شكل النص
	wcout << test.getReShape()<<endl; //ارجاع  شكل النص بالمعكوس بسبب الكونسل من يسار لليمين 

	
	ArabicString test2;
	wcin >> test2;// سوف يقرا كلمه واحده فقط
	test2.makeShape();
	wcout << test2.getReShape() << endl;
	
	ArabicString test3;
	wchar_t str[11];
	wcin.getline(str,10); // لقراءه السطر بالكامل حتي الحد الذي تحدده
	test3 = str;
	test3.makeShape();
	wcout << test3.getReShape() << endl;
	
	return 0;
}

الدوال

ArabicString::goArabic(); استدعائها في بدايه البرنامج لتهيئة الكونسل للغه العربيه
makeShape() لتقوم بعمل شكل النص المدخل
getTextLength() ارجاع طول النص الاصلي
getShapeLength() ارجاع طول الشكل
getText() ارجاع قيمه النص
getShape() ارجاع شكل النص
getReShape() ارجاع شكل النص بالمعكوس ( السبب من استعمال العكسي لانه الكونسل من يسار لليمين ف يجب استدعاء الشكل العكسي )

كلمه اخيره

ماب اللغه العربيه ماخوذ من سورس كود ماتين2

English

To init string with arabic characters for in/out.

HOW-TO

Just add the files to ur project. encode of the file must be : UTF-8-BOM

Functions

ArabicString::goArabic(); To init the arabic in/out for the console
makeShape() To make the shpae of the text in arabic
getTextLength() Length of the text
getShapeLength() Length of the shape text
getText() Get the text
getShape() Get the shape text
getReShape() Get the shape text in reverse order cuz the console in ltr mode

Last word

Arabic characters map taken from metin2 source cdoe

About

Arabic String for C++ Console Applications

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages