Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - GamerMX1248

Pages: [1]
1
The Axe Parser Project / Re: Features Wishlist
« on: February 02, 2013, 03:07:11 pm »
What I'd like to see is a way to put null characters (the same as [00]) into a string more easily than doing
Code: [Select]
"First"->Str1
"Second":[00]
"Third":[00]
You know, for using the fancy strDev( function. Maybe
Code: [Select]
"First*Second*Third"->Str1 where * is the imaginary 'i', Eulers 'E', pi, the degree symbol, or r. If it was used twice in a row, the symbol would show up normally like an escape character from any C like language
Or possibly:
Code: [Select]
"First"->Str1
"Second"[sup]r[/sup]
"Third"[sup]r[/sup]
where r simply adds a null character after a string.
Any of these would work for me

2
The Axe Parser Project / Re: Axe Parser
« on: February 02, 2013, 02:19:14 pm »

Thank you. This will make my project so much easier

3
The Axe Parser Project / Re: Axe Parser
« on: February 01, 2013, 10:06:10 pm »
Is there a way to split several strings without assigning several static variables.
Right now i have to do this:
Code: [Select]
"Easy"->Str11
"Medium"->Str12
"Hard"->Str13
So that when i want to irritate through several strings separated by a '0' using stdDev(, I reference Str11.
But i'd rather do something like
Code: [Select]
"Easy*Medium*Hard"->Str1 Where * is some kind of special character that is replaced by the string termination character.
Is there a way to do this in Axe, or some other easier work around to save on variable declarations and reduce typing time?
I've got a big project that will involve lots of irritating through sets of text, so how I'm currently doing it will take much longer than i'd like to invest in it.

Thanks in advance

4
The Axe Parser Project / Re: Features Wishlist
« on: October 07, 2011, 08:30:38 am »
I agree, that feature would be useful.

5
The Axe Parser Project / Re: Axe Parser
« on: October 05, 2011, 11:39:41 am »
Any chance we will see 32 bit numbers soon, or will everything just move to floatin point vars towords the end of development?

will an input command for getting numbers instread of arrays of tokens be made soon?

Pages: [1]