Tagged Questions
The ordinal tag has no wiki summary.
23
votes
5answers
6k views
Difference between InvariantCulture and Ordinal string comparision
When comparing two strings in c# for equality, what is the difference between InvariantCulture and Oridinal comparision.
10
votes
6answers
1k views
How do you format the day of the month to say “11th”, “21st” or “23rd” in Java?
I know this will give me the day of the month as a number (11, 21, 23):
SimpleDateFormat formatDayOfMonth = new SimpleDateFormat("d");
But how do you format the day of the month to say 11th, 21st ...
6
votes
2answers
1k views
Getting ordinal from function name programatically
Hey,
Does anyone What's the easiest way in C++ to get an ordinal of an exported dll function, given its name?
(Looking for a way which doesn't invlove parsing the IATs myself...)
Thanks,
Dan
5
votes
6answers
2k views
Python: Date Ordinal Output?
I'm wondering if there is a quick and easy way to output ordinals given a number in python.
For example, given the number 1, I'd like to output "1st", the number 2, "2nd", et cetera, et cetera.
This ...
4
votes
1answer
257 views
How to quickly obtain PHP localised ordinals using Zend_Locale
I need to localise ordinal values i.e 1st, 2nd, 3rd etc.. into various european languages There doesn't seem to be an option for doing this with Zend_Locale. Anyone know of a way of doing this in ...
4
votes
3answers
1k views
Ordinal Date Format C#
Problem:
You are given dates in a format of YYYYddd, which is the year, followed by the day of the year, 1 through 365(366). For example today would be 2009135 (5/15/2009).
What is the best way to ...
3
votes
3answers
222 views
Passing an Ordinal Parameter
Is it possible to write a method which takes any ordinal type as a parameter? The same way Inc() or High() do?
I'm using Delphi 2007
2
votes
1answer
63 views
Idiomatic method of finding the median of an ordinal in R
I need to find the median of an ordinal (i.e. ordered factor) in R.
I couldn't find a method in the standard library to do this, so I came up with the following clunky solution:
ordinal.median <- ...
2
votes
4answers
172 views
Creating console command list - how to do it right with Java
For a homework I code in Java(with which I'm a newbie), I bump into the problem of creating a console command list. The user will be confronted with a set of commands, among which s/he will choose ...
2
votes
4answers
254 views
Using the Ruby Date class for Astronomical data
~ Approximate Solar Noon
lw = 88.743 # my longitude
jdate = Date.ordinal_to_jd(Time.now.year, Time.now.yday)
n = (jdate - 2451545 - 0.0009 - lw / 360).round # lw is users longitude west of 0.
...
1
vote
3answers
31 views
SQL to get an ordinal index in selection for specific ID
I'm working with the SQL Server database. Say, I have a selection that returns an array of IDs. Can I find out (with SQL) the order of an ID equalled N in that array?
Here's what I mean. This is my ...
1
vote
0answers
115 views
algorithm for reducing/merging nominal and ordinal categories
I'm receiving datasets where several variables have >10 categories (some ordinal/some nominal) and I suspect that several of the categories could be merged, both for easier presentation but also to ...
1
vote
1answer
272 views
Why does reader.GetOrdinal(“FieldName”) throw an exception?
this throws an exception, when the field does not exist:
reader.IsDbNull(reader.GetOrdinal("FieldName")) => bang
Why not return -1 ?
1
vote
2answers
326 views
Access columns of a table by index instead of name in SQL Server stored procedure
Is there a way to access columns by their index within a stored procedure in SQL Server?
The purpose is to compute lots of columns. I was reading about cursors, but I do not know how to apply them.
...
1
vote
2answers
114 views
Is String.Format and DateTimeFormatInfo pluggable/extensible?
So for example lets say when I string.format a date and use the string "or" in format pattern I want that converted to the ordinal value of the Date.
ie
string.Format("{0:ddor MMM yyyy}.", ...
1
vote
1answer
148 views
How can I call a exported function using ordinal number
If a dll exports some functions and the functions have only ordinal numbers, how can I call the functions?
Give me a short example please.
1
vote
1answer
266 views
Does -[NSCalendar ordinalityOfUnit:inUnit:forDate:] not work?
I have the following code in my program:
NSUInteger currentMinuteOrdinal = [[NSCalendar currentCalendar] ordinalityOfUnit:NSMinuteCalendarUnit inUnit:NSEraCalendarUnit forDate:[NSDate date]];
...
1
vote
2answers
353 views
How do I sort by value from a second level hash, in Perl?
my $hash_ref = {
one => { val => 1, name => 'one' },
three => { val => 3, name => 'three'},
two => { val => 2, name => 'two' },
};
I would like to sort ...
0
votes
1answer
44 views
Sorting a List of Strings, Ignoring ASCII Ordinal Values
I want to sort this list:
>>> L = ['A', 'B', 'C', ... 'Z', 'AA', 'AB', 'AC', ... 'AZ', 'BA' ...]
Exactly the way it is, regardless of the contents (assuming all CAPS alpha).
>>> ...
0
votes
0answers
5 views
Determine the relation between nominal and categrical data
I am trying to built a predictor. My dependent variable is of nominal type and there are five different classes in it. On the other hand, my independent variables are of ordinal type. Can anyone ...
0
votes
5answers
59 views
How do I select a specific enum.ordinal() using another enum?
First, my code (It is far from perfect, I don't really know what I am doing) is this:
public enum Chord { MAJOR, MINOR, DIMINISHED, BASS, BASS2 }
public enum Scales { C, D, E, F, G, A }
public ...
0
votes
3answers
74 views
How to access public properties of a List<class> by their ordinal position
I have public properties of a class and my output detail line is being written like this:
public static long OutputListToFile(StreamWriter writer, List<DocMetaData> listData)
{
...
0
votes
1answer
274 views
FindPrivateKey under Windows 7 64 bit doesn't work
I've downloaded .net sample FindPrivateKey, compiled for framework 4.0, tried for different platforms (32bit, 64bit, Any CPU) but it didn't work. Always the same error: the ordinal 345 could not be ...
0
votes
1answer
94 views
NumberFormatter::ORDINAL giving me garbage
I'm trying to use the NumberFormatter class in PHP and I'm having problems with the ORDINAL format. I've tried a couple other formats without a problem. But when I use ORDINAL I just get garbage. ...
0
votes
1answer
435 views
How to convert number to arabic word in .Net? [closed]
Possible Duplicates:
Is there an easy way to create ordinals in C#?
How can I convert an integer into its verbal representation?
Hi All,
How to convert number to arabic word?
I want ...
0
votes
1answer
1k views
Ordinal not found
can anyone give me any advice on what to do about this error ?!
i made a simple mfc app which works on windows7 but on winXP it throws the bellow error :
"The ordinal 7118 could not be located in the ...