Top "Type-conversion" questions

Type conversion is the way of implicitly or explicitly changing an entity of one data type into another.

Convert INT to VARCHAR SQL

I am using Sybase and I am doing a select which returns me a column called "iftype", but its type …

sql select type-conversion sybase
Converting an integer to a string in PHP

Is there a way to convert an integer to a string in PHP?

php string casting type-conversion integer
How to convert UTF-8 byte[] to string?

I have a byte[] array that is loaded from a file that I happen to known contains UTF-8. In some …

c# .net arrays string type-conversion
How to convert a char to a String?

I have a char and I need a String. How do I convert from one to the other?

java string char type-conversion
How to convert integer to string in C?

I tried this example: /* itoa example */ #include <stdio.h> #include <stdlib.h> int main () { int i; …

c string integer type-conversion
Convert a Unicode string to a string in Python (containing extra symbols)

How do you convert a Unicode string (containing extra characters like £ $, etc.) into a Python string?

python string unicode type-conversion
How to convert a data frame column to numeric type?

How do you convert a data frame column to a numeric type?

r dataframe type-conversion
How Do I Convert an Integer to a String in Excel VBA?

How do I convert the integer value "45" into the string value "45" in Excel VBA?

vba string type-conversion integer
SQL error "ORA-01722: invalid number"

A very easy one for someone, The following insert is giving me the ORA-01722: invalid number why? INSERT INTO CUSTOMER …

sql oracle plsql casting type-conversion
java : convert float to String and String to float

How could I convert from float to string or string to float? In my case I need to make the …

java string types number-formatting type-conversion