Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
8answers
425 views

Can you cast a LPTSTR to a BSTR?

Is it legal to cast a LPTSTR directly to a BSTR? Based on my understanding of BSTR, casting a LPTSTR to a BSTR directly will leave you with a corrupted length prefix. The example code explicitly ...
4
votes
5answers
795 views

What is the difference between parseInt(string) and Number(string) in JavaScript?

What is the difference between parseInt(string) and Number(string) in JavaScript?
4
votes
3answers
2k views

Python parse comma-separated number into int [closed]

Possible Duplicate: How do I use Python to convert a string to a number if it has commas in it as thousands separators? How would I parse the string 1,000,000 (one million) into it's ...
3
votes
1answer
138 views

How to convert NSTextView RTFD data to plain text in cocoa

I have one NSTextView containing formatted text and embedded images like following. I want convert above into plain text like following: Hi this is test data (...picture...)This is colored text. ...
2
votes
2answers
80 views

Beginner Python Question RE: String Formatting Type and repr() function

So I have this code: formatter = "%r %r %r %r" print formatter % (1, 2, 3, 4) print formatter % ("one", "two", "three", "four") And I get this output: 1 2 3 4 'one' 'two' 'three' 'four' ...
2
votes
3answers
121 views

inconsistency in converting string to integer, when string is hex, prefixed with '0x'

Using PHP 5.3.5. Not sure how this works on other versions. I'm confused about using strings that hold numbers, e.g., '0x4B0' or '1.2e3'. The way how PHP works with such strings seems inconsistent to ...
2
votes
2answers
121 views

What is the best way to convert a string to UTF-8 in PHP?

I am wondering what the best way to convert an string into UTF-8 using PHP is. The following looks ok on the page, but in MySQL some characters are looking garbled. MYSQL: UPGRADE EVENT – New ...
2
votes
1answer
175 views

is strtoul not endian safe?

So I am doing a conversion from a string to an unsigned long using strtoul on both a little endian and big endian machine. The little endian machine returns the correct value, while the big endian ...
2
votes
2answers
150 views

Iterate through parts of a string

I have string in the form [3339:1.6101369,1062:1.5,5751:1.5,6376:1.5, ... ] I want to iterate through the comma separated key-value pairs. What is the best or shortest way to do this?
2
votes
5answers
773 views

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 on programming language? On the face of it, one needs to traverse the entire ...
2
votes
4answers
6k views

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 using JavaScript so that i can compare like if (EDateTime > ('1/1/1912')) ...
1
vote
3answers
56 views

How to convert from _bstr_t to System::String

Firstly, I'm some what new to C++/CLI. After doing some research I've found that I can use Marshal::PtrToStringBSTR to convert an IntPtr to System::String. So, is there a way to convert my _bstr_t ...
1
vote
2answers
98 views

VB.NET - any string to date conversion

Short question. I am trying to convert a string into Date (to put it later into INSERT command). My problem is that the string I am reading is always different (there is no rule what format it is ...
1
vote
3answers
65 views

What occurs when a string is converted to a byte array

I think that this is a newbie type question but I have quite understood this. I can find many posts on how to convert a string to a byte array in various languages. What I do not understand is what ...
1
vote
0answers
43 views

Compact long string with PathEllipsis in .Net

I have following string, which i am drawing in one of my treeview control using DrawString. @haTEST sadasd asd asd asd asd asd asd asd ### adssad asd asd asd asd asd asdasdasd The treeview is ...
1
vote
7answers
101 views

C# Should “as string” work like this?

as string caused me a problem when dealing with object arrays. The values after execution are shown in the comments. Should it work this way? object[] array = new object[2]; array[0] = 0.33; ...
1
vote
2answers
575 views

convert a javascript string variable to decimal/money

how can we convert a javascript string variable to decimal ? is there a function such as parseInt(document.getElementById(amtid4).innerHTML)
1
vote
3answers
171 views

Python: Get number of years that have passed from date string

Given that I start with a string, like '3/6/2011' which is month/day/year, and the current day is 3/13/2011 (7 days later), how can I find the number of years that have passed since that time (7/365 = ...
1
vote
1answer
3k views

How to convert nsstring to cString?

I have a nsstring(filePath),which has the path to the audio file.I want open the audio file, so i want to convert the nsstring to Cstring. fopen([filePath cStringUsingEncoding:1], "r"); is the ...
1
vote
6answers
1k views

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 number of possible methods. First, converting a signed long taken from atol. char *myStr; // Initalized ...
1
vote
3answers
10k views

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 value is read out into an byte array. But how can I transform it into a readable ...
0
votes
2answers
64 views

conversion between UINT and LPCWSTR in c++

How can I get the string representation (as LPCWSTR) of a variable of type UINT?
0
votes
1answer
23 views

floatval($moneyString) returning 0

Code: var_dump($prodCost); $prodCost = (float)$prodCost; var_dump($prodCost); result: string(5) "$4.57" float(0) What am I doing wrong here? I am looking for the result to be ...
0
votes
2answers
46 views

PHP: Convert specific-Bosnian characters to non-bosnian (utf8 standard chars)

In Bosnia we have following characters only used in latin-form in Bosnia and Croatia, so I'd need to convert these letters as following: FROM | TO ć | c č | c ž | z š | s đ | dj If ...
0
votes
1answer
32 views

W2CA possible loss of data, right?

I'm working a legacy VC++6 app that is trying to add in unicode support, i have a function that calls into a rpc call that expects and unsigned char, if I use the W2CA() macro on the string being ...
0
votes
1answer
188 views

Converting tchar[] to LPCWSTR

I am using FindFirstFile to traverse through a directory to search a dll. When I get the dll, I use the WIN32_FIND_DATA structure's cfilename to get the name of that dll. Now, I want to pass the dll ...
0
votes
4answers
256 views

wstringstream to LPWSTR

I have built up a string using wstringstream and need to assign it to a member of a struct of type LPWSTR. I try to use my_stringstream.str().c_str() but get the following compile time error: ...
0
votes
1answer
157 views

mixed programming for a string between C# managed code and c++ unmanaged code

I'm working on a c++ project which uses a string path to call an XML file. When i compiled the c++ everything works perfectly and i'm able to use the XML file as my project requires. I needed to use ...
0
votes
3answers
116 views

ways to convert array to string in php

other than JSON, is there any function in PHP to convert array to string. I know there is a fucntion that directly does like JSON. I just don't remember.
0
votes
4answers
278 views

How to copy string to bytearray

I have a StringArray that is filled with line of text and I need to take each array of strings and convert them to byte. How Dim splitText() As String = TextRead.Split(Chr(13)) Dim byteArray() as ...
0
votes
3answers
143 views

String to Date; Format of input varies

For the project I'm working on at the moment I need to convert a String to a Date. Unfortunately the date and time aren't formatted the same in all the Strings that need to be converted. In the ...
0
votes
3answers
158 views

WP7: What is the easiest way to convert a group of textboxes from text to a number or decimal value?

So I have users inputting numbers into multiple text boxes and I need to check that they are not null and convert them to decimal. Is there a simpler way to do this than a separate IF for each ...
0
votes
3answers
359 views

Why ((Integer) weightModel.getObject()).intValue(); throws exception

I am learning Wicket by "Enjoying Web Development with Wicket" book.It is written for Wicket 1.4.7 And in an example: int weight = ((Integer) weightModel.getObject()).intValue(); is used. When I ...
0
votes
3answers
99 views

Converting a number to a string and back

I have always used streams, printf, string(x) or whatever the language in question offered to convert numeric types to a string or back. However I have never really considered how this is actually ...
0
votes
1answer
155 views

convert int into string with certain length of char

If the title wasn't clear, ill try to explain it well here. I have a bunch of integers, ranging from 1 to 999, and i need to convert these into strings, but when i do that, i need them to be 3 ...
0
votes
4answers
444 views

Need to convert a ZIP file to a random text file

As title says need to convert a Zip file to text file , no matter the size and no matter if it will make sense or not.But i need to reconvert it to that zip file again (Lose less). The main problem i ...
-2
votes
1answer
64 views

How to vectorize and accelerate strtime() logtime conversion on a data-frame

(EDIT: one of the issues here is scale, namely what works for one row will blow up/crash R on a 200,000 * 50 dataframe. For example, strptime must be applied column-wise, not row-wise, to avoid ...