Tagged Questions
The stringification tag has no wiki summary.
5
votes
1answer
209 views
Opposite of C preprocessor “stringification”
When using C preprocessor one can stringify macro argument like this:
#define TO_STRING(x) "a string with " #x
and so when used, the result is as follows:
TO_STRING(test) will expand to: "a string ...
5
votes
4answers
306 views
Preprocessor tomfoolery (stringifying a #include)
Note: This question has nothing to do with OpenCL per se... check the last paragraph for a succinct statement of my question. But to provide some background:
I'm writing some C++ code that makes use ...
5
votes
5answers
2k views
Stringifying template arguments
Is it possible in C++ to stringify template arguments?
I tried this:
#define STRINGIFY(x) #x
template <typename T>
struct Stringify
{
Stringify()
{
...
4
votes
3answers
114 views
How to add a modifier to a quoted regular (qr) expression
Is there an easy way to add regex modifiers such as 'i' to a quoted regular expression? For example:
$pat = qr/F(o+)B(a+)r/;
$newpat = $pat . 'i'; # This doesn't work
The only way I can think of is ...
4
votes
2answers
104 views
How do I turn a macro into a string using cpp?
GNU's cpp allows you to turn macro parameters into strings like so
#define STR(x) #x
Then, STR(hi) is substituted with "hi"
But how do you turn a macro (not a macro parameter) into a string?
Say ...
3
votes
3answers
341 views
Is there a way to use C++ preprocessor stringification on variadic macro arguments?
My guess is the answer to this question is no, but it would be awesome if there was a way. To clarify, assume I have the following macro:
#define MY_VARIADIC_MACRO(X...) // Does some stuff here in ...
3
votes
3answers
120 views
Formatting data quantity/capacity as string
A common task in many programs is converting a byte count (such as from a drive capacity or file size), into a more human readable form. Consider 150000000000 bytes as being more readable as "150 GB", ...
2
votes
1answer
148 views
Web page does not preserve newlines
Building a web app that includes several contentEditable divs. The users add stuff to the div's, clicks the save button, which saves all the data from each div to a json object. That goes through ...
2
votes
4answers
342 views
Why do I see HASH(0xABCDEF) in my Perl output?
I am running perl, v5.6.1 built for sun4-solaris-64int
I am calling print on an array
print "@vals\n";
and the output looks like
HASH(0x229a4) uid cn attuid
or another example
@foo = {};
...
1
vote
2answers
228 views
C Unstringification with macros
Is there any way to unstringify strings provided as macro arguments? I need to be able to call functions who's names are in strings. Something like this:
void hello() {
printf("Hello, world!");
}
...
1
vote
5answers
86 views
In Javascript, if there is an object with a lot of properties that are functions, how do you convert them to array of strings (of the function names)?
In Javascript, if an object has lots of properties that are functions:
var obj = { foo: function() { ... },
bar: function() { ... },
...
}
then how can you get ...
1
vote
2answers
2k views
Is JSON.stringify() reliable for serializing JSON objects?
I need to send full objects from Javascript to PHP. It seemed pretty obvious to do JSON.stringify() and then json_decode() on the PHP end, but will this allow for strings with ":" and ","? Do I need ...
0
votes
3answers
77 views
Is Array.toString() guaranteed to remain as is in ActionScript 3?
Is it fine to display the output of Array.toString() to the user, or is there a possibility that the string format could change in future versions of ActionScript 3 or other compilers?
0
votes
1answer
1k views
jQuery JSON.stringify not getting the entire JSON string to store to cookie
I’m trying to set scores in a cookie with a JSON string…
var json = JSON.stringify({
s:{score:2000,name:"Michael"},
s:{score:1000,name:"Tito"},
s:{score:500,name:"Jackie"},
...
0
votes
1answer
2k views
Getting JSON data of JSTree, and it's metadata
We're using jstree for a navigation menu editor, and have been assigning metadata to the nodes of the tree like this:
var data = currentNode.data("jstree");
data.title = textBoxTitle.val();
...
0
votes
3answers
143 views
Stringified template argument
Is it possible to get a stringified version of a template argument name?
Something like this, if only we were running the preprocessor:
template <typename T>
struct Named{
const char* ...