Top "String-conversion" questions

String conversion is the act of converting data to and from character strings.

How to convert st_mtime (which get from stat function) to string or char

I need to convert st_mtime to string format for passing it to java layer, i try to use this …

c datetime android-ndk string-conversion
Convert number in textbox to float C#

I have textbox that accept numbers. Those numbers will be saved in database. When I enter number like 2,35 and convert …

c# string-conversion
How can I convert a REG_BINARY value from the registry into a string ? (vb.net)

I have a registry value which is stored as a binary value (REG_BINARY) holding information about a filepath. The …

.net vb.net binary registry string-conversion
Report Builder 3.0: How to convert string representation of dates in mm/dd/yy format using CDate

I'm building a report using Report Builder 3.0. The source system I'm working with has strings representing dates in the format …

date reporting-services reportbuilder string-conversion regional-settings
convert string into datetime format in Javascript

i have a string which, i want to compare with a javascript datetime object. how to convert string "1/1/1912" into datetime …

javascript string-conversion
How do you get an unsigned long out of a string?

What's the safest and best way to retrieve an unsigned long from a string in C++? I know of a …

c++ long-integer unsigned string-parsing string-conversion
MYSQL: How to convert a string into a month (Number)

I have the short version of months: JAN, FEB, MAR, etc. and would like to convert them to it's respective …

mysql string-conversion date-conversion
C# convert string to double in locale

In my locale the decimal separator is a ','. However I would still like to write a C# application …

c# string-conversion
Convert string to number & vice versa complexity

What would be the complexity of converting a string to its equivalent number or vice versa? Does it change depending …

algorithm string complexity-theory math string-conversion
Convert Uint8Array into hex string equivalent in node.js

I am using node.js v4.5. Suppose I have this Uint8Array variable. var uint8 = new Uint8Array(4); uint8[0] = 0x1…

node.js string-conversion