Tagged Questions

The act of changing one thing into another.

learn more… | top users | synonyms

123
votes
19answers
112k views

How do you convert Byte Array to Hexadecimal String, and vice versa, in C#?

This is probably a common question over the Internet, but I couldn't find an answer that neatly explains how you can convert a byte array to a hexadecimal string, and vice versa. Any takers?
123
votes
9answers
59k views

How to convert decimal to hex in JavaScript?

How do you convert decimal values to their hex equivalent in JavaScript?
68
votes
5answers
58k views

Convert std::string to const char* or char*

How can I convert an std::string to a char* or a const char*?
62
votes
13answers
108k views

How to convert chm to pdf [closed]

I have two types of document: CHM and PDF, but I'd rather like it if they all were in PDF format. I am looking for some good way to change it. Has anyone good ideas? I'll appreciate it. Update: ...
61
votes
6answers
17k views

Git: Convert normal to bare repository

How can I convert a 'normal' Git repository to a bare one? The main difference seems to be: in the normal git repository you have a .git folder inside the repository containing all relevant data ...
55
votes
3answers
29k views

SQL to LINQ Tool [closed]

Is there a tool out there which can convert SQL syntax to LINQ syntax? I just want to rewrite basic queries with join, etc, to LINQ. It would save me a lot of time. Cheers!
48
votes
14answers
10k views

Convert Python dict to object

I'm searching for an elegant way to convert a normal Python dict with some nested dicts to an object. For example: >>> d = {'a': 1, 'b': {'c': 2}, 'd': ["hi", {'foo': "bar"}]} Should be ...
45
votes
13answers
81k views

Alternative to itoa() for converting integer to string C++?

I was wonding if there was an alternative to itoa() for converting an integer to a string because when I run it in visual Studio I get warnings, and when I compile my program under Linux, it won't ...
41
votes
3answers
23k views

How to get the function name as string in Python?

In Python, how do I get the function name as a string without calling the function? def my_function(): pass print get_function_name_as_string(my_function) # my_function is not in quotes should ...
37
votes
7answers
22k views

How to get Color from Hex color code using .NET?

How can I get Color from a Hex color code(e.g. #FFDFD991)? I am reading a file and getting Hex color code, I need to create the corresponding System.Windows.Media.Color instance for the Hex color ...
33
votes
8answers
51k views

How to convert object array to string array in Java

I use the following code to convert an object array to a string array : Object Object_Array[]=new Object[100]; // ... get values in the Object_Array String String_Array[]=new ...
33
votes
10answers
59k views

Convert Pixels to Points

I have a need to convert Pixels to Points in C#. I've seen some complicated explanations about the topic, but can't seem to locate a simple formula. Let's assume a standard 96dpi, how do I calulate ...
31
votes
7answers
14k views

Generic type conversion FROM string

I have a class that I want to use to store "properties" for another class. These properties simply have a name and a value. Ideally, what I would like is to be able to add typed properties, so that ...
27
votes
4answers
20k views

How to convert CFStringRef to NSString?

NSString *aNSString; CFStringRef aCFString; aCFString = CFStringCreateWithCString(NULL, [aNSString UTF8String], NSUTF8StringEncoding); aCFString = CFXMLCreateStringByUnescapingEntities(NULL, ...
26
votes
7answers
39k views

Generic List to DataTable

I have few methods that returns different Generic Lists. Exists in .net any class static method or whatever to convert any list into a datatable? The only thing that i can imagine is use Reflection ...
25
votes
2answers
10k views

Convert LaTeX to ePub [closed]

I'd like to convert some university papers from LaTeX into ePub format - without using PDF as intermediate format. You know, PDF is page-oriented, while ePub is more flow-oriented. While I found ...
24
votes
3answers
49k views

How to convert string into float in javascript?

I have a datagrid and I get 2 column's value by javascript. These fields are numeric and when fields have comma (ex. 554,20), I cant get the numbers after comma. I tried parseInt, parseFloat. How can ...
24
votes
12answers
2k views

Is casting the same thing as converting?

In Jesse Liberty's Learning C# book, he says "Objects of one type can be converted into objects of another type. This is called casting." If you investigate the IL generated from the code below, you ...
23
votes
5answers
69k views

How do I convert from int to long in Java?

I keep finding both on here and Google people having troubles going from long to int and not the other way around. Yet I'm sure I'm not the only one that has run into this scenario before going from ...
19
votes
1answer
10k views

How to convert NSMutableData to NSString on iPhone?

I received an NSMutableData from a server and now I want to convert it to an NSString. Any ideas about how to do this?
18
votes
5answers
19k views

C#: How do I parse a string with a decimal point to a double?

I guess this is a very easy question, but I wasn't able to find a question with Google or the MSDN examples. I want to parse a string like "3.5" to a double. However, double.Parse("3.5") yields ...
18
votes
4answers
3k views

How do you convert a string to a byte array in .Net

I have a string that I need to convert to the equivalent array of bytes in .NET. This ought to be easy but I am having a brain cramp.
18
votes
10answers
56k views

Using itext to convert HTML to PDF

Does anyone know if it is possible to convert a HTML page (url) to a PDF using itext? If the answer is 'no' than that is OK as well since I will stop wasting my time trying to work it out and just ...
18
votes
12answers
24k views

How to format a string as a telephone number in C#

I have a string "1112224444' it is a telephone number. I want to format as 111-222-4444 before I store it in a file. It is on a datarecord and I would prefer to be able to do this without assigning a ...
17
votes
5answers
49k views

Convert SQL server datetime fields to compare date parts only, with indexed lookups

I've been doing a convert(varchar,datefield,112) on each date field that I'm using in 'between' queries in SQL server to ensure that I'm only accounting for dates and not missing any based on the time ...
16
votes
4answers
1k views

Overuse of fromIntegral in Haskell

Whenever I write a function using doubles and integers, I find this problem where I am constantly having to use 'fromIntegral' everywhere in my function. For example: import Data.List roundDouble ...
16
votes
4answers
8k views

Quickest way to convert a base 10 number to any base in .NET?

I have and old(ish) C# method I wrote that takes a number and converts it to any base: string ConvertToBase(int number, char[] baseChars); It's not all that super speedy and neat. Is there a good, ...
16
votes
9answers
11k views

Double.TryParse or Double.Convert - what is faster and more safe?

My application reads an Excel file using VSTO and adds read data to a StringDictionary. It adds only data that is a number with few digits (1000 1000,2 1000,34 - comma is a delimiter in Russian ...
16
votes
2answers
49k views

Convert hex string to byte array

As indicated in the answers, this is a duplicate of "How do you convert Byte Array to Hexadecimal String, and vice versa, in C#?" Hi, Can we converting a hex string to a byte array using a ...
15
votes
4answers
4k views

Conversion of a decimal to double number in C# results in a difference

Summary of the problem: For some decimal values, when we convert the type from decimal to double, a small fraction is added to the result. What makes it worse, is that there can be two "equal" ...
15
votes
9answers
17k views

Convert Rtf to HTML

Are there any libraries around that can convert Rtf to HTML. We have a crystal report that we need to send out as an e-mail, but the HTML generated from the crystal report is pretty much just plain ...
15
votes
13answers
41k views

How do I convert a double into a string in C++?

I need to store a double as a string. I know I can use printf if I wanted to display it, but I just want to store it in a string variable so that I can store it in a map later.
14
votes
3answers
210 views

What is the point of Convert.ToDateTime(bool)?

I was doing some type conversion routines last night for a system I am working on. One of the conversions involves turning string values into their DateTime equivalents. While doing this, I noticed ...
14
votes
3answers
3k views

Subversion python bindings could not be loaded

This is a but of a part 2 in trying to convert an SVN repository to a Mercurial one command is: hg convert file://c:/svnrepository but, the output I get is: assuming destination svnrepository-hg ...
14
votes
6answers
4k views

How do I convert an HttpRequestBase into an HttpRequest object?

inside my ASP.NET MVC controller, I've got a method that requires an HttpRequest object. All I have access to is an HttpRequestBase object. Is there anyway I can somehow convert this? What ...
14
votes
8answers
25k views

How to read a csv file into a .net datatable

How can I load a csv file into a System.Data.DataTable, creating the datatable based on the CSV file? Is there a class library for this or can I use ADO.net to connect to the file?
13
votes
7answers
7k views

Java - easily convert array to set

I'd like to convert an array to a set in Java. There are some obvious ways of doing this (i.e. with a loop) but I would like something a bit neater, something like: java.util.Arrays.asList(Object[] ...
13
votes
3answers
23k views

How to convert An NSInteger to an int?

For example when passing a value message to an NSInteger instance like so [a value] it causes an EXC_BAD_ACCESS. So how to convert an NSInteger to int? If it's relevant only small numbers < 32 ...
13
votes
5answers
26k views

Convert double to string C++?

I want to combine a string and a double and g++ is throwing this error: main.cpp: In function ‘int main()’: main.cpp:40: error: invalid operands of types ‘const char [2]’ and ‘double’ to binary ...
13
votes
2answers
30k views

Can I convert long to int?

I want to convert long to int. If the value of long > int.MaxValue, I am happy to let it wrap around. What is the best way?
13
votes
4answers
46k views

PHP String to Float

I am not familiar with PHP at all and had a quick question. I have 2 variables @pricePerUnit and @invoicedUnits. Here's the code that is setting these to values: $InvoicedUnits = ((string) ...
12
votes
13answers
3k views

Handle DBNull in C#

Is there a better/cleaner way to do this? int stockvalue = 0; if (!Convert.IsDBNull(reader["StockValue"])) stockvalue = (int)reader["StockValue"];
12
votes
3answers
1k views

The Simplest Steps to Converting TCL TK to a Stand Alone Application

After running into major compatitiblity problems with C#, ASP.NET, MS Access, Linux, and Mono, I've decided to program in a language that is cross-platform, open source, and compatible with embedded ...
12
votes
9answers
2k views

Casting vs Converting an object toString, when object really is a string

This isn't really an issue, however I am curious. When I save a string in lets say an DataRow, it is cast to Object. When I want to use it, I have to cast it ToString. As far as I know there are ...
11
votes
3answers
1k views

Parse decimal and filter extra 0 on the right?

From a XML file I receive decimals on the format: 1.132000 6.000000 Currently I am using Decimal.Parse like this: decimal myDecimal = Decimal.Parse(node.Element("myElementName").Value, ...
11
votes
2answers
2k views

Convert/cast an stdClass object to another class

I'm using a third party storage system that only returns me stdClass objects no matter what I feed in for some obscure reason. So I'm curious to know if there is a way to cast/convert an stdClass ...
11
votes
5answers
12k views

Ruby: convert string to date

In Ruby, what's the best way to convert a string of the format: "{ 2009, 4, 15 }" to a Date?
11
votes
8answers
2k views

How can I convert PDF to HTML?

What good libraries are there, in any common language, for converting PDF to HTML?
11
votes
7answers
5k views

How do I convert a document from Latex into Microsoft Word 2003?

I need to find a way to quickly convert a latex document into a Microsoft Word 2003 document. I'm using Kile to edit latex documents on Ubuntu at present. I can do it the following way: latex ...
11
votes
10answers
14k views

How to convert a Java object (bean) to key-value pairs (and vice versa)?

Say I have a very simple java object that only has some getXXX and setXXX properties. This object is used only to handle values, basically a record or a type-safe (and performant) map. I often need ...

1 2 3 4 5 45