Top "Data-conversion" questions

This tag refers to the process of converting the data type of one piece of information into another type.

Java string to date conversion

What is the best way to convert a String in the format 'January 2, 2010' to a Date in Java? Ultimately, …

java string date time data-conversion
Converting array to list in Java

How do I convert an array to a list in Java? I used the Arrays.asList() but the behavior (and …

java arrays list data-conversion
How can I convert a Unix timestamp to DateTime and vice versa?

There is this example code, but then it starts talking about millisecond / nanosecond problems. The same question is on MSDN, …

c# datetime unix epoch data-conversion
Java: How to convert List to Map

Recently I have conversation with a colleague about what would be the optimal way to convert List to Map in …

java list data-structures hashmap data-conversion
Convert string with comma to integer

Is there any neat method to convert "1,112" to integer 1112, instead of 1? I've got one, but not neat: "1,112".split(',').…

ruby integer data-conversion
Convert String with Dot or Comma as decimal separator to number in JavaScript

An input element contains numbers a where comma or dot is used as decimal separator and space may be used …

javascript jquery string-parsing data-conversion
Number to String in a formula field

I am using a formula field to concatonate 2 decimal values separated by a dash. However, I want the result to …

crystal-reports data-conversion
how to convert long date value to mm/dd/yyyy format

Possible Duplicate: converting long string to date I need to convert long date value to mm/dd/yyyy format.my …

java android date data-conversion
How do I print bytes as hexadecimal?

I know in C# you can use String.Format method. But how do you do this in C++? Is there …

c++ bytearray type-conversion data-conversion