1
vote
1answer
88 views

Designing Tests for Culture/Globalisation problems

I'm concerned about the predictability of my application in handling string input in different cultures. It has been a problem in older software and I don't want it to be a problem in the new. I ...
1
vote
1answer
121 views

StringComparison vs CompareOptions in C#?

After reading this I'm still confused : string s1 = "hello"; string s2 = "héllo"; The difference thing here is the accent/culture. The result of the following code is False. ...
0
votes
1answer
116 views

Input decimal with commas in c#

i have a question in Indonesia, we usually use 8,5 not 8.5 but when i write 8,5 in textbox it mean 85 how to solve it? simply i want to change the dot with commas
13
votes
2answers
451 views

C#- ToLower() is sometimes removing dot from the letter “I”

We have noticed a weird error when calling ToLower() on certain strings. The input string is: string s = "DocumentInfo"; string t = s.ToLower(); // sometimes, t == documentinfo // other times, t == ...
2
votes
1answer
355 views

How to change the culture of a number in C#?

I'm sending parameters to paypal as hidden form vars. but my site's culture is Danish. So "50,00" is the value for "amount_1" <input type="hidden" name="amount_1" value="50,00" /> I'm using ...
0
votes
5answers
512 views

How do i convert a floating point string to an int in c#

I have a string: string test = "19,95"; and I wan't to convert it to an int. I use: int num = Convert.Int32(test); However it throws an FormatException. And tells me that the string is not a ...
6
votes
1answer
429 views

Problem comparing French character Î

When comparing "Île" and "Ile", C# does not consider these to be to be the same. string.Equals("Île", "Ile", StringComparison.InvariantCultureIgnoreCase) For all other accented characters I ...
1
vote
2answers
445 views

Whats the difference between these two strings?

Using nUnit to test the output (currency formatting) for a specific culture but we are getting the following result. Fail: Formatting currency amount String lengths are both 11. Strings differ at ...
12
votes
6answers
9k views

Double.Parse - Internationalization problem

This is driving me crazy. I have the following string in a ASP.NET 2.0 WebForm Page string s = "0.009"; Simple enough. Now, if my culture is Spanish - which is "es-ES" - and I try to convert the ...
7
votes
2answers
335 views

Finding the end of a substring match in .NET

I am trying to find the index of a substring in a string that matches another string under a specific culture (provided from a System.CultureInfo). For example the string "ass" matches the ...