Polish is the English name for the language spoken in Poland.
Questions tagged [polish]
122 questions
1
vote
1 answer
Polish characters from Invoke-RestMethod or Invoke-webrequest not displaying correctly in PowerShell script
I have a problem with getting data with Polish diacritics from an Invoke webrequest or Invoke-Restmethod.
WHen I retrieve the data I am getting strange characters instead of the correct Polish diacritics.
for example:
Plec :…

Hans Aben
- 11
- 2
1
vote
1 answer
How to extend search query from java to Marklogic to get highlights?
I need to extend REST API in java with Spring reaching to Marklogic database. I already have functionality using StructuredQueryBuilder and the search method from DocumentManagerImpl (package com.marklogic.client.impl), but the client expects…

Marcin
- 11
- 1
1
vote
0 answers
Polish language is not loading in the browser - ngx translate
i am new to angular so not sure which piece of code should be included here. I am using ngx translate, and building an application with angularjs. this application is multilingual and loads other languages like german and chinese, but i am facing…

Hari prasad
- 11
- 2
1
vote
0 answers
How to copy a sheet with polish letter in name [VBA]?
I need to copy sheet from one workbook to another workbook. That is simple, but name of this sheet contains a polish letter "ł".
I know I have to replace "ł" with " & ChrW$(&H142) & ", but have no idea how to build a name of sheet that VBA will…

adam_m
- 19
- 1
1
vote
2 answers
Unable to Parse a date of format d MMMM yyyy in Polish Locale in Java
I tried to parse the date (3 December, 2020) with format d MMMM yyyy in Polish Locale but it is unable to parse. But why the same parsing is working fine in any other locale like english, etc. Below is the code sample which is not working. Can…

Amit Agarwal
- 67
- 1
- 1
- 12
1
vote
2 answers
Regex - find word in string
I have a string: prawy p pęknięty p zderzak pęknięcie (it's Polish
language)
I want to select all p (except "p" in words "pęknięty" and "peknięcie")
I've tried to do something like that: \b(s*ps*)\b, but it doesn't work properly. Any ideas?

Wiola
- 21
- 2
1
vote
3 answers
Problem with .decode('utf-8').upper() and special characters (but only inside the string)
I would like to capitalise letters on given position in string. I have a problem with special letters - polish letters to be specific: for example "ą". Ideally would be a solution which works also for french, spanish etc. (ç, è etc.)…

Filip Parker
- 155
- 1
- 7
1
vote
1 answer
SQL ORACLE Polish letters translate
I want find a solutions to change letters in sql
In Polish language we have 'ą','ć','ł','ń'
when i make select lower(translate(sname,'łńą','lna')) from emplo it dosn't work as it should be.
help friends :)

Artur Stolc
- 41
- 2
- 9
1
vote
0 answers
Import CSV to SQL database with Polish characters
I've kept a spreadsheet of Polish words on google docs and I'd like to import a CSV download of this file into my SQL database using PHPMyAdmin.
The database will then be queried via my website and display the Polish words.
I've exported the CSV…

Owen Garfield
- 35
- 7
1
vote
1 answer
Visualisation of uft-8 (Polish) not working properly
My software supports multiple languages (English, German, Polish, Russian, ...). For this reason I have some language specific files with the dialog texts in the specific language (Encoded as UTF-8).
In my mfc application I open and read those…

xMutzelx
- 566
- 8
- 22
1
vote
2 answers
How to transliterate Polish alphabet with US-ASCII?
Is there a more or less standard way to transliterate Polish alphabet with the original ASCII (US-ASCII) characters?
This question can be broken in two related and more precise questions:
How to transliterate 32 letters of Polish alphabet with…

Andriy Makukha
- 7,580
- 1
- 38
- 49
1
vote
0 answers
how to manage polish(poland) strings with stored procedure in mysql
I am facing issue with polish characters inside mysql stored procedure.
String is following :
Premium American Twill -rozmiar dziecięcy -z naklejką SNAP BACK PRO
Getting following Error :
Incorrect string value: '\xC4\x99cy -...' for column…

Mohit Shah
- 124
- 7
1
vote
1 answer
Polish characters in reportlab tables
def create_daily_raport(self):
elements = []
pdfmetrics.registerFont(TTFont('polishFont', 'polishFont.ttf'))
data = [['Data', 'nr zlecenia', 'oprawki', 'soczewki', 'zadatek', 'dopłata', 'cena łączna']]
data_for_table = ['1', '2',…

xDevil213
- 33
- 1
- 5
1
vote
1 answer
Read & write txt file error - 'str' object has no attribute 'name', polish dialectical chars in path error
I use Python 2.7 on Win 7 Pro SP1.
I try code:
import os
path = "E:/data/keyword"
os.chdir(path)
files = os.listdir(path)
query = "{keyword} AND NOT("
result = open("query.txt", "w")
for file in files:
if file.endswith(".txt"):
file_path…

user3588886
- 11
- 2
1
vote
2 answers
Saving 'Ł' and 'ł' characters as ascii/ansi file with nodejs
I'm having hard time saving some polish characters like 'Ł' to a ascii file.
const fs = require('fs');
fs.writeFileSync('ascii.txt','Ł','ascii');
I would like the output file to show 'Ł' character.
I tried buffers etc no luck.
Can't figure out how…

j809809jkdljfja
- 767
- 2
- 9
- 25