Error When Print Accents


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Error When Print Accents
# 1  
Old 07-31-2004
PHP Error When Print Accents

I like to know how to print accent when use the command lp -d <file>.
This <file> contain the following accents (e.g. é, á, ê, ã, ç) and anothers accents, please i need to help.
thank´s

Last edited by edvaldo; 08-16-2004 at 01:31 PM..
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Print Error in Console and both Error & Output in Log file - UNIX

I am writing a shell script with 2 run time arguments. During the execution if i got any error, then it needs to redirected to a error file and in console. Also both error and output to be redirected to a log file. But i am facing the below error. #! /bin/sh errExit () { errMsg=`cat... (1 Reply)
Discussion started by: sarathy_a35
1 Replies

2. Shell Programming and Scripting

Script doesn't print error.

Hi Gurus, I have below sample script. I expect it print error when running script without input parameter. but the it doesn't. would you please help me about this issue. thanks in advance. /script$cat test.ksh #!/bin/ksh while getopts :f: arg do case $arg in ... (4 Replies)
Discussion started by: ken6503
4 Replies

3. UNIX for Dummies Questions & Answers

Error in adding print queue

Hi Everyone, I am trying to add a print queue using HPPI. After selecting the option to add a new printer, I get the following message: ERROR: Printer configuration error Could not find the printer configuration file Please verify software installation Can someone please assist me with... (1 Reply)
Discussion started by: Scarlet
1 Replies

4. Slackware

cp does not like filenames with accents?

Hi: mkisofs -graft-points -rational-rock -joliet -joliet-long -full-iso9660-filenames -iso-level 2 -o /tmp/image.iso STORE1/=/almacen/strauss In /almacen/strauss there are filenames containing not only spaces but accented characters as well. I burned the image to DVD, with the result that all... (2 Replies)
Discussion started by: stf92
2 Replies

5. Shell Programming and Scripting

awk Print get error

Hi, Gurus, I have script as following: #!/usr/bin/khs lastdate=`cat abc` echo $lastdate awk '{ if ($0~/^\$\$lastupdatedate *=/) {print '\$\$lastupdatedate=$lastdate'} else {print $0}}' file1 > tmp error message awk: syntax error near line 1 awk: illegal statement near line 1 when I change... (7 Replies)
Discussion started by: ken002
7 Replies

6. Shell Programming and Scripting

Print system error in perl

Hi ... I am trying to get the system error msg when the directory creation is failed. unless (`mkdir -p "xyz/abc/test"`) { print "Not able to create directory $!"; } This code is running in cgi-bin script and is the output displayed as HTML. How to get the system error msg like... (1 Reply)
Discussion started by: Anu_1
1 Replies

7. Shell Programming and Scripting

How to print error and exit if command fails?

Guys any tips on printing a certain error message to stderr and exiting should a command fail within a ksh script? I'm trying to null some output files. Touch isn't suitable as i need to null them. print "" > file isn't suitable as i need to check elsehere for if they are 0bytes or not. ... (5 Replies)
Discussion started by: lavascript
5 Replies

8. Shell Programming and Scripting

Print Error with set command

I need to print some mandatory instructions if something fails in the script. I am using set -e to check and exit the script if some scripts/commands return non zero exit code. Is there any way to print these instructions with set command?? (0 Replies)
Discussion started by: Shribigb
0 Replies

9. Shell Programming and Scripting

remove accents and symbols with sed

Hi, I would like to know how could I remove accentes and the symbols: º and ª of a text file with sed. Whis this command doesn't works :-( sed "s/í/i/g" filename Many thanks and sorry for my english! (7 Replies)
Discussion started by: mierdatuti
7 Replies

10. Shell Programming and Scripting

Error while trying to print message

Hi all Geting this error while trying to print message as : ./logfunc: print: bad file unit number heres what i m trying to do : log_date="$(date '+%d/%m/%Y %H:%M:%S')" log_type="Message" print "${log_date}: ${log_type}" print -u3 "${log_date}: ${log_type}" this error is due to... (3 Replies)
Discussion started by: Navatha
3 Replies
Login or Register to Ask a Question
COLLATOR_SET_STRENGTH(3)						 1						  COLLATOR_SET_STRENGTH(3)

Collator::setStrength - Set collation strength

	Object oriented style

SYNOPSIS
public bool Collator::setStrength (int $strength) DESCRIPTION
Procedural style bool collator_set_strength (Collator $coll, int $strength) The ICU Collation Service supports many levels of comparison (named "Levels", but also known as "Strengths"). Having these categories enables ICU to sort strings precisely according to local conventions. However, by allowing the levels to be selectively employed, searching for a string in text can be performed with various matching conditions. o Primary Level: Typically, this is used to denote differences between base characters (for example, "a" < "b"). It is the strong- est difference. For example, dictionaries are divided into different sections by base character. This is also called the level1 strength. o Secondary Level: Accents in the characters are considered secondary differences (for example, "as" < "as" < "at"). Other differ- ences between letters can also be considered secondary differences, depending on the language. A secondary difference is ignored when there is a primary difference anywhere in the strings. This is also called the level2 strength. Note Note: In some languages (such as Danish), certain accented letters are considered to be separate base characters. In most languages, however, an accented letter only has a secondary difference from the unaccented version of that letter. o Tertiary Level: Upper and lower case differences in characters are distinguished at the tertiary level (for example, "ao" < "Ao" < "ao"). In addition, a variant of a letter differs from the base form on the tertiary level (such as "A" and " "). Another exam- ple is the difference between large and small Kana. A tertiary difference is ignored when there is a primary or secondary differ- ence anywhere in the strings. This is also called the level3 strength. o Quaternary Level: When punctuation is ignored (see Ignoring Punctuations ) at level 13, an additional level can be used to dis- tinguish words with and without punctuation (for example, "ab" < "a-b" < "aB"). This difference is ignored when there is a pri- mary, secondary or tertiary difference. This is also known as the level4 strength. The quaternary level should only be used if ignoring punctuation is required or when processing Japanese text (see Hiragana processing). o Identical Level: When all other levels are equal, the identical level is used as a tiebreaker. The Unicode code point values of the NFD form of each string are compared at this level, just in case there is no difference at levels 14. For example, Hebrew can- tillation marks are only distinguished at this level. This level should be used sparingly, as only code point values differences between two strings is an extremely rare occurrence. Using this level substantially decreases the performance for both incremental comparison and sort key generation (as well as increasing the sort key length). It is also known as level 5 strength. For example, people may choose to ignore accents or ignore accents and case when searching for text. Almost all characters are distin- guished by the first three levels, and in most locales the default value is thus Tertiary. However, if Alternate is set to be Shifted, then the Quaternary strength can be used to break ties among whitespace, punctuation, and symbols that would otherwise be ignored. If very fine distinctions among characters are required, then the Identical strength can be used (for example, Identical Strength distinguishes between the Mathematical Bold Small A and the Mathematical Italic Small A.). However, using levels higher than Tertiary the Identical strength result in significantly longer sort keys, and slower string comparison performance for equal strings. PARAMETERS
o $coll -Collator object. o $strength -Strength to set. Possible values are: o Collator::PRIMARY o Collator::SECONDARY o Collator::TERTIARY o Collator::QUATERNARY o Collator::IDENTICAL o Collator::DEFAULT_STRENGTH RETURN VALUES
Returns TRUE on success or FALSE on failure. EXAMPLES
Example #1 collator_set_strength(3) example <?php $arr = array( 'ao', 'Ao', 'ao' ); $coll = collator_create( 'en_US' ); // Sort array using default strength. collator_sort( $coll, $arr ); var_export( $arr ); // Sort array using primary strength. collator_set_strength( $coll, Collator::PRIMARY ); collator_sort( $coll, $arr ); var_export( $arr ); ?> The above example will output: array ( 0 => 'ao', 1 => 'Ao', 2 => 'ao', ) array ( 0 => 'ao', 1 => 'Ao', 2 => 'ao', ) SEE ALSO
Collator constants, collator_get_strength(3). PHP Documentation Group COLLATOR_SET_STRENGTH(3)