First of all excuse me for this stupid question. This is something with that I am stuck and didn't get anything around.
I am in need of decimal format where if value is something like-
15000.45 should go to => 15,000
150000.44 should go to => 150,000
Note- I want to eliminate points value after period (.)
I've gone through input mask-
http://digitalbush.com/projects/masked-input-plugin/ but couldn't find any helper mask.
Another resource I tried-
Convert decimal currency to comma separated value
But they are replacing point value replaced by comma, i.e. if value is something 15000.34
then it converts it to 15000,34
I also tried it giving custom format as- value.ToString("0,00")
but doesn't help.
Please assist!