Questions tagged [french]

Computing issues involving the French language

Questions related to computing issues, including not but limited to character encodings, fonts, and formatting, involving the French language, spoken in France, Belgium, Switzerland, Canada, and many former colonial regions in the Americas and Africa.

148 questions
0
votes
1 answer

Regex for french characters fails validation based on the position of french character

In my code I had a Password RegEx (written by someone) (/^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)[\x20-\x7E]{8,40}$/) which was not supporting french characters. And I modified it a bit to support french characters. And…
0
votes
0 answers

Using French text in Python script

I am new to Python, and I am trying to change some text from English to French in a series of ArcGIS maps, using a Python script (running version 2.7.12) and editing it in IDLE. Following the suggestions in these posts Write french characters in…
bsr
  • 1
0
votes
1 answer

Stanford CoreNLP POS tagging in French

I am looking for a way to use Pos tagging for French sentences with Python. I saw that we could use Stanford CoreNLP but after several searches on google, I did not find real examples that could satisfy me .. It would be great to have a piece of…
ElData
  • 13
  • 1
0
votes
0 answers

PHP convert English date to French date

What is the correct way to write this code so that the output date is properly formatted for French? This code works correctly for English, but I have searched on here for how to do…
0
votes
0 answers

Unzip terminal mac french accent

How can I unzip a .zip file with french accent (folders and files have accent some time) with the app terminal on macOS 10.13.5? For exemple with this command : unzip file.zip some folder with accent is like this: ba%A6%E9ton_TBF but the real name…
Myriam Lefebvre
  • 113
  • 1
  • 12
0
votes
1 answer

Keyboard Localization of type Decimal Pad

I am trying below code for keyboard localization which work in Swift3. I have taken this code from below link:- iPhone: Change Keyboard language programmatically But it gives below error in Swift 4. a) let language = type.getKeyboardLanguage() for…
poojathorat
  • 1,200
  • 2
  • 9
  • 19
0
votes
0 answers

WebClient DownloadString in UTF8 not returning french characters

I am using Visual Studio in C# (.Net 4.5). I made a simple program that has a single button. When I click it, it fetches the first five results of a Google query on Justin Trudeau, some of them in french, hence the "fr" in the query string. It then…
Richard L.
  • 5
  • 1
  • 5
0
votes
0 answers

French accents dont working with Twilio SMS

I want to send sms message for group of numbers, without going through with coding a script, is there any solution in twilio console that can help me with that? Those characters do not show and replaced with a space: é,à .... Does anyone know a…
0
votes
1 answer

datetime symfony french OVH

I do not understand why the locale set in config.yml symfony is not applied on my OVH server. I tried direcly to convert date in php without the framework and here are my results : setlocale (LC_TIME, 'fr_FR.utf8'); echo strftime ("% A% e% B% Y",…
bingo
  • 150
  • 3
  • 10
0
votes
1 answer

All french words in python to build a crossword game

Can someone tell me how can I get a list of all french/english dictionnary words in python ? My aim is to build a crossword game with a function. This function must have some letters in input and return all combinations of words existing in the…
Boubacar Traoré
  • 359
  • 4
  • 14
0
votes
0 answers

PDF French document R

I work now with Rstudio version 3.4.3 and I tried to analyze a PDF document in French language using package tm. My problem is that even I specify the language of the document with this command my_pdf <- readPDF (control = list (text = "- layout"))…
h.ibn
  • 9
  • 3
0
votes
0 answers

Python french locale on Windows 10 not UTF8?

I'm trying to write a multiplateform script which works OK on Mac Os but failed on Windows if I load the french local. I use the following code at startup to load the locale depending on the host OS : import locale from sys import platform if…
Adri
  • 85
  • 1
  • 6
0
votes
2 answers

Different Date Formatting Options should be formatted into a common format in Java 1.6

I'm are using Java 1.6. Now, we are having different values of date for 12 months which are being rendered as below sam. 26 janv. 2019 mer. 28 févr. 2018 jeu. 15 mars 2018 mer. 11 avr. 2018 mar. 15 mai 2018 mer. 20 juin 2018 mer. 20 jul 2018 mer.…
0
votes
0 answers

Autofocus in a modal activated via the store

I want to find a prettier solution on that problematic : A click on a main component button set to true the var showUserAddModal in the store // App.vue // ... computed: { ...mapGetters('admin', [ 'showUserAddModal' ]) } // ... methods: { …
H.Quatre
  • 53
  • 1
  • 4
0
votes
2 answers

How do I get French month names in PHP in this existing script?

I use the following code below to create a select dropdown of the next 12 months, starting with this month: $year=date("Y"); //Current Month $month = date('m'); $dateObj = DateTime::createFromFormat('!m', $month); $month0 = $dateObj->format('F');…
user3304303
  • 1,027
  • 12
  • 31