Tagged Questions

17
votes
7answers
13k 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?
15
votes
12answers
1k 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 …
15
votes
6answers
7k views

How to convert decimal to hex in JavaScript?

How do you convert decimal values to their hex equivalent in JavaScript?
12
votes
3answers
3k views

SQL to LINQ Tool

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!
11
votes
10answers
15k 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 …
9
votes
4answers
870 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.
8
votes
3answers
4k views

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

How can I convert an std::string to a char* or a const char*?
8
votes
3answers
3k 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(): . . . print get_function_name_as_string(my_function) # my_function is not in quotes output …
8
votes
8answers
1k views

Generic Type Conversion FROM String

Hi Guys, Here is the problem I am having, 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 …
7
votes
11answers
571 views

Convert Python dict to object

Hi, 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 …
7
votes
9answers
827 views

What is the easiest or most effective way to convert month’s abbreviation to a number in Perl? (ie “jan” to 1)

If I import a library to use a method, would it be worth it? Does importing take up a lot of memory?
6
votes
7answers
277 views

How can I convert PDF to HTML?

What good libraries are there, in any common language, for converting PDF to HTML?
6
votes
4answers
516 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" …
6
votes
2answers
219 views

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

Hello: 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 …
6
votes
4answers
326 views

How do I convert unicode characters to floats in Python?

I am parsing a webpage which has Unicode representations of fractions. I would like to be able to take those strings directly and convert them to floats. For example: "⅕" would become 0.2 Any …

1 2 3 4 5 26 next
15 30 50 per page