Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

netsds::util::translit(3pm) [debian man page]

NetSDS::Util::Translit(3pm)				User Contributed Perl Documentation			       NetSDS::Util::Translit(3pm)

NAME
NetSDS::Util::Translit - transliteration routines SYNOPSIS
use NetSDS::Const; use NetSDS::Util::Translit; # Transliterate cyrillic string $trans_string = trans_cyr_lat($cyr_string); # Reverse transliteration to russian language $rus_string = trans_lat_cyr("Vsem privet", LANG_RU); DESCRIPTION
"NetSDS::Util::Translit" module contains routines for bidirectional cyrillic text transliteration. Now it supports russian and ukrainian languages processing. EXPORTS
trans_cyr_lat($text[, $lang]) - transliterate string Convert text from cyrillic to latin encoding. Language may be set if not default one. $lat = trans_cyr_lat($string); trans_lat_cyr($text[, $lang]) - reverse transliteration This function transliterate string from latin encoding to cyrillic one. Target language may be set if not default one. $cyr = trans_lat_cyr("Sam baran", "ru"); EXAMPLES
None yet BUGS
Unknown yet TODO
Implement examples and tests. SEE ALSO
Encode, perlunicode AUTHORS
Valentyn Solomko <pere@pere.org.ua> perl v5.12.4 2011-08-27 NetSDS::Util::Translit(3pm)

Check Out this Related Man Page

NetSDS::Util::Types(3pm)				User Contributed Perl Documentation				  NetSDS::Util::Types(3pm)

NAME
NetSDS::Util::Types - type checking routines SYNOPSIS
use NetSDS::Util::Types; # Check if variable contains integer value if (is_int($var)) { $var++; } else { print "Value is not integer!"; } DESCRIPTION
"NetSDS::Util::Types" module contains functions for checking data for being of exact data types. EXPORTED FUNCTIONS
is_int($var) - check if parameter is integer Check if given parameter is integer is_float([...]) - check if parameter is float number Check if given parameter is float number is_date([...]) - check if parameter is date string Return 1 if parameter is date string is_binary([...]) - check for binary content Return 1 if parameter is non text. is_ref_scalar($ref) - check if reference to scalar value Return true if parameter is a scalar reference. my $var = 'Scalar string'; if (is_ref_scalar($var)) { print "It's scalar value"; } is_ref_array($ref) - check if reference to array Return true if parameter is an array reference. is_ref_hash($ref) - check if hashref Return true if parameter is a hash reference. is_ref_code($ref) - check if code reference Return true if parameter is a code reference. is_ref_obj($ref, [$class_name]) - check if blessed object Return true if parameter is an object. EXAMPLES
None BUGS
None TODO
Add more functions. SEE ALSO
None. AUTHORS
Valentyn Solomko <pere@pere.org.ua> Michael Bochkaryov <misha@rattler.kiev.ua> perl v5.12.4 2011-08-27 NetSDS::Util::Types(3pm)
Man Page

4 More Discussions You Might Find Interesting

1. AIX

Russian fonts not displaying in AIX PDF files

Hi, We have an issue with russian cyrillic fonts that are not displayed correctly in pdf when application works in AIX . The same russian fonts are displayed properly in windows machine. There are spaces between russian characters and also cyrillic fonts are overlapping in AIX... (3 Replies)
Discussion started by: jinto
3 Replies

2. Shell Programming and Scripting

Korn shell to insert cyrillic characters into the databse

i have written a shell script that reads a csv file and inserts tokenized strings into the database. the problem comes when the csv file has cyrillic characters. how do i set the parameters in my shell script(korn shell) so that any characters can be inserted into the database. (3 Replies)
Discussion started by: vkca
3 Replies

3. SCO

How to write/edit text in russian on SCO

Hello. I'm new to unix, and I want to write/edit text files in russian on SCO 5.0.7. Is it possible and how to do this. I tried to add russian support in KDE using kikbd, but unsuccessful. (1 Reply)
Discussion started by: OpG_
1 Replies

4. UNIX for Dummies Questions & Answers

Cyrillic Hostnames?

As the title suggests, I'm wondering if its possible to set a hostname to a name or word with Cyrillic letters (e.g. - Like the Russian alphabet). I tried installing the cyrillic-console package in Debian. I switched my desktop to Russian as well. However, when I try to set the hostname I get that... (2 Replies)
Discussion started by: Azrael
2 Replies