Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

49
votes
7answers
6k views

Is there an easy way to create ordinals in C#?

Is there an easy way in C# to create Ordinals for a number? For example: 1 returns 1st 2 returns 2nd 3 returns 3rd ...etc Can this be done through String.Format() or are there any functions ...
19
votes
8answers
5k views

Is there an easy way in .NET to get “st”, “nd”, “rd” and “th” endings for numbers?

I am wondering if there is a method or format string I'm missing in .NET to convert the following: 1 to 1st 2 to 2nd 3 to 3rd 4 to 4th 11 to 11th 101 to 101st 111 to 111th This link ...
7
votes
8answers
14k views

Is it possible to select sql server data using column ordinal position

Is it possible to select column data using the ordinal_position for a table column? I know using ordinal positions is a bad practice but for a one-off data import process I need to be able to use the ...
4
votes
5answers
2k views

Benefits Of Using SQL Ordinal Position Notation?

Background Information Ordinal position notation, AKA ordinals, is column shorthand based on the column order in the list of columns in the SELECT clause, instead of either the column name or ...
3
votes
2answers
134 views

Formatting a DateTime value Day value

Is there a simple method of displaying the day portion of a date in the format 1st, 2nd, 3rd,…? I suspect that there is no method of doing this through custom datetime formatstrings (I will be very ...
3
votes
2answers
378 views

jquery: ordinal of td inside tr

I have a row in an html-table that contains only images. (this happens to be the first row too). Those images are wired for a click event too. While trying to handle the click event I can find out its ...
3
votes
1answer
360 views

localize ordinal numbers

for ($rank=0; $rank<100; $rank++) { printf("Your rank: %d%s", $rank, $suffix); } Does there exist a gettext function to localize $suffix to the current language and return, for example: Your ...
2
votes
1answer
125 views

Get the ordinal position while creating selected Item in a LINQ expression

How can I get the ordinal position while creating selected Items in a LINQ expression? For example: var alphaordinals = new string[] { "A", "B", "C", "D", "E" }; // etc. var q = from car in ...
2
votes
2answers
205 views

Integer Extensions - 1st, 2nd, 3rd etc [closed]

Possible Duplicate: NSNumberFormatter and ‘th’ ‘st’ ‘nd’ ‘rd’ (ordinal) number endings Hello, I'm building an application that downloads ...
1
vote
2answers
207 views

is there an ordinal to cardinal function in ruby or rails?

I'm trying to find a better way in expressing my cucumbers so I am looking for an ordinal to cardinal function that converts this: When I fill up the first passenger field Then I should see the ...
1
vote
5answers
55 views

sql, database query

could anyone tell me how to select particular column if i dont know the schema of table .Like if i want only the values in the second column of database table without knowing the column name. Is there ...
1
vote
3answers
237 views

mysql - selecting values from a table given column number

is it possible in mysql to select a value from a table by specifying the column number instead of the column name ?
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
2answers
632 views

Modify regex to match dates with ordinals “st”, “nd”, “rd”, “th”

How can the regex below be modified to match dates with ordinals on the day part? This regex matches "Jan 1, 2003 | February 29, 2004 | November 02, 3202" but I need it to match also: "Jan 1st, 2003 | ...
1
vote
4answers
477 views

Does mysql have function for returning a number with ordinal suffix?

Basically I'm looking for something like SELECT ordinal(my_number) FROM my_table which would return 1st 11th 1071st ... etc but preferrably without the use of a stored procedure
1
vote
1answer
220 views

How can I find the exported function name from ordinal (export by ordinal)?

I trying in export directory ,i got the exported function name(export by name) by browsing the directory with help of addressoffnnames property ....Here ,Example in comctl32.dll (api) total fn names ...
1
vote
2answers
1k views

How to get the function name from the ordinal number in a COM dll

I am trying to get actual function names from their ordinal numbers from a COM dll. I tried using dumpbin.exe but it only returns [NONAME] for each ordinal (except the first few). ordinal hint ...
1
vote
4answers
2k views

Is there a VB.NET function to format a number as an Ordinal

The title says it all really, is there a built in VB.NET function to format a number as an Ordinal? Or do I have to write my own? There isn't in C# so I'm thinking their isn't :( Thanks
0
votes
1answer
53 views

Shift+Backspace is Writing a Checkmark Symbol?

I can't even copy and paste a strange checkmark looking character from my IDLE interpreter session into this text field...I am running Linux Mint Julia, python version 2.6, but it also happens in 3.1. ...