Polish is the English name for the language spoken in Poland.
Questions tagged [polish]
122 questions
0
votes
1 answer
Android localized app doesn't display some polish characters from my strings.xml properly
OK, so i have localized resources in resources-pl as per googles documentation. My problem is that some characters seem to work, and some not.
I've scoured the interwebs, but from what i can see it SHOULD work so long as the file is UTF-8 encoded,…

Mathias
- 3,879
- 5
- 36
- 48
0
votes
1 answer
National characters in java replaceAll
I have big problem with replacing some characters in Java. I would like to remove all characters that are not letters, numbers or special national characters such as "ę, ą". When I use the function replaceAll("\W", " ") special characters are also…

elberth
- 141
- 1
- 1
- 3
0
votes
1 answer
Add Unicode Meta tag to XPages for Polish Characters
I have the need to support different languages in my xpages. I have been informed that the Polish language have special characters which is part of the unicode character set.
I have read that I need to add the following to my xpages to support…

Thomas Adrian
- 3,543
- 6
- 32
- 62
0
votes
1 answer
window.location.href or $(location).attr('href') and Polish diacritics
I've got a little problem with my code.
In my website I got a search engine with filter option.
The search condition are kept in window url,
but the filter in standard does not take the search parameters.
I want to repair this problem.
I wrote…

LJ Wadowski
- 6,424
- 11
- 43
- 76
0
votes
3 answers
K&R possible bug in polish calculator
I'm not sure where to post this but I think I found a pretty major bug in K&R's polish calculator program. Basically, when you perform an operation, two values get popped while only the result gets pushed. The problem is that the result isn't…

ericgrosse
- 1,490
- 20
- 37
0
votes
2 answers
Reverse Polish Notation
Quick question about reverse polish notation.
Why is 2*3/(2-1)+5*(4-1)?: (original)
23*21-/541-*+
rather than 23*21-/5+41-*?
I am just confusing myself. Personally I'd have adding extra brackets to the original question to make it clear where…

Emma Rouse
- 11
- 4
0
votes
1 answer
Zend Mail Storage encoding polish chars
I want to get emails from imap using Zend_Mail_Storage_Imap. When I get content I can't see polish chars.
Mail:
coś tam coś tam
Content using Zend_Mail_Message:
co=B6 tam co=B6 tam
My code:
foreach($imap as $messageNum=>$message)
{
…

kamil
- 23
- 5
0
votes
0 answers
Polish fonts in HtmlWorker
I want create pdf from html, I use the itext library I have problem with polish fonts in pdf I use this code:
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.StringReader;
import com.itextpdf.text.Document;
import…

user1957895
- 31
- 2
- 6
0
votes
1 answer
outlook footer charset - how to use polish signs?
I have a problem with a footer to outlook e-mails for my dad's firm.
I've already manage to make it look as I want it to, but I have problems with polish signs.
Here's the code:

Aleksander
- 73
- 9
0
votes
1 answer
Polish letter Encoding issue in Internet explorer 8
I m search utility by entering polish letter in my web application.
if i m entering polish letter as Łódź it will search data from database in firefox but not in IE 8.
in same way i will append search criteria of entered value and display in curretn…

Ruchi
- 5,032
- 13
- 59
- 84
0
votes
1 answer
PHP CSV Generation - Polish charater turned to their html entities
When i try to insert polish character in Csv file .The polish character automatically turned to their respective htmlentities

Iam4fun
- 1,438
- 3
- 14
- 18
0
votes
1 answer
Maximum number of elems on stack for infix -> postfix translation
I got this as an interview question.
What is the maximum number of elements that can be on stack at a
specific moment while doing a translation from infix form to reversed
postfixed Polish form?
I know that the principle is that on the stack…

Soreena
- 19
- 3
-1
votes
1 answer
polish characters in debian command line only installation
I have debian lenny command line installation, I am trying to print polish characters to the command line and I have a Turkish QWERTY keyboard.
If I use dpkg-reconfigure console-data
and select pc/qwertz/polish/standard/standard as keyboard…

erin c
- 1,345
- 2
- 20
- 36
-1
votes
1 answer
PoDoFo library c++ polish text to pdf
This solution
doesn't work for me.
Any other options?
EDIT
I have this:
string font = "resources//fonts//FreeSans.ttf";
PdfStreamedDocument document(output_pdf_name.c_str());
PdfPainter painter;
PdfPage* page;
page =…

Fryderyk
- 61
- 1
- 7
-1
votes
2 answers
Read from file and write to file 'Ł' character with nodejs
I have an ansi file with 'Ł' character I would like to read this character and save it to another file with the same encoding(to get 'Ł' character).
const fs = require('fs');
var content = fs.readFileSync('input.txt',null);…

j809809jkdljfja
- 767
- 2
- 9
- 25