94 questions
Score of 1
1 answer
162 views
How to print euro sign from c console app using gnome terminal
I am trying to print the euro sign on the console in the Gnome Terminal app through a c console application. My code is:
#include <stdio.h>
#include <wctype.h>
#include <wchar.h>
#...
Score of 1
2 answers
77 views
How to remove currency amounts from a list? ["9.358,26 €", "Hello World", "3.562,77 €", "3,77 €"] -> ["Hello World"]
["9.358,26 €", "Hello World", "3.562,77 €", "3,77 €"] -> ["Hello World"]
I was thinking of using regex, but is there a more easy way?
Score of 0
1 answer
907 views
PowerShell Get-Content do not display currency symbol euro (€), pound (£)
I read a csv file that contains currency symbol : us dollar ($), british pound (£) and euro (€).
Here a short extract:
337;European €;NULL;
426;British £;NULL;
337;Americain $;NULL;
I use a ...
Score of 0
0 answers
248 views
R Shiny - "€" Euro symbol not rendering in Shiny plots
I am attempting to label each of my data points in a Shiny App Plot with a € symbol and value.
I have succesfully created this plot using R, with the "€" sign appearing for each point 1 but ...
Score of 0
1 answer
470 views
Eclipse STS console fails to display some UTF-8 chars
I am using Spring Tool Suite v4.13.1, a customisation of Eclipse 3.18.
I have the following code:
NumberFormat fChina = NumberFormat.getCurrencyInstance(Locale.SIMPLIFIED_CHINESE);
NumberFormat ...
Score of 0
3 answers
633 views
Is there any API to format currency values in java?
I have currency code and value in double. Need to do formating for Currencies.I tried with NumberFormat and Locale but in this case for example EURO has different Locale related to countries. How can ...
Score of 0
0 answers
690 views
Convert byte[] to ISO-8859-15 or utf-8
I need help to convert a byte array into a format which could read the € symbol.
Now, the program I'm working on is reading the file like this :
new String(bytes, "ISO-8859-1")
I find ISO-...
Score of 1
1 answer
600 views
Why when I format with Intl.NumberFormat to euro, the whitespace between the last digit and the € is not the same as the spacebar?
I'm wondering why the currency formatter for euro uses a different whitespace than the normal space produced when pressing the spacebar. Here is a code example showing that comparing strings becomes ...
Score of 0
2 answers
1904 views
Regular Expression For EURO Format
I want the EURO format to be accepted only in the following forms.
Three digits with "." Be segregated.
i found this expression but not work in my way:
^(0|(([1-9]{1}|[1-9]{1}[0-9]{1}|[1-9]{...
Score of 1
2 answers
1337 views
Euro sign (€) is rendered as Û, only on iPhone
I stumbled upon this very weird issue: I have a plain HTML-document (having <!DOCTYPE html> and <meta charset="utf-8"> in the head) containing a price list in Euro, thus showing ...
Score of 0
0 answers
82 views
Eurosign gives strange result
I've a problem when I'm assigning currency format to a specific range in a Excel sheet.
The code in powershell I use to set the format is below :
$LC_ws_tab.range("B1 :B5").NumberFormat = &...
Score of 1
1 answer
71 views
adding €-sign in valueBox() in RShiny
My valueBox() in the server is generated as:
valueBox(winterMean, subtitle = "Mean Winter Performance", color = "black")
What I want to have the subtitle Mean Winter Performance ...
Score of 0
1 answer
63 views
Python removing special character from string not working
Yesterday I wrote a script which scraped a value from a webpage, and then removed two special characters ('.' and '€') from the scraped string, so it could then be converted to integer format. Today, ...
Score of 0
1 answer
478 views
Excel sports template rank table
I am currently working on a sports template prediction for the upcoming Euro 2020. I haven't gotten that far yet but below is an example of a group. So the "Tecken" column says which team won the game,...
Score of 1
1 answer
1381 views
Mpdf unable to print euro symbol (€)
I'm using mpdf to convert a table in html to pdf.
This table includes euro symbols (but may contain other currency symbols in the future) the thing is, although I set mpdf charset to utf-8, it keeps ...