Roman numerals on Wikipedia
25
votes
6answers
6k views
How do you match only valid roman numerals with a regular expression?
Thinking about my other problem, i decided I can't even create a regular expression that will match roman numerals (let alone a context-free grammar that will generate them)
The problem is matching ...
23
votes
16answers
11k views
How can you customize the numbers in an ordered list?
How can I left-align the numbers in an ordered list?
1. an item
// skip some items for brevity
9. another item
10. notice the 1 is under the 9, and the item contents also line up
Change the ...
22
votes
10answers
829 views
How to sort an array of Roman numerals?
I have an array containing Roman numerals (as strings of course). Like this:
$a = array('XIX', 'LII', 'V', 'MCCXCIV', 'III', 'XIII');
I'd like to sort them according to the numeric values of these ...
17
votes
31answers
3k views
Code Golf New Year Edition - Integer to Roman Numeral
Write a program that take a single command line argument N and prints out the corresponding Roman Numeral.
Eg N = 2009 should print MMIX.
Let's say this should work for 0 < N < 3000.
(Had fun ...
12
votes
2answers
786 views
How do you find a roman numeral equivalent of an integer
How do you find a roman numeral equivalent of an integer. Is there a java library which provides this capability?
I did find a similar question, but I would prefer an out of the box API abstraction ...
10
votes
6answers
1k views
How to convert a Roman numeral to integer in PHP?
Using PHP, I'd like to convert a string containing a Roman number into its integer representation. I need this because I need to make calculations on them.
Wikipedia on Roman numerals
It would ...
9
votes
6answers
579 views
Converting integers to roman numerals
I'm trying to write a function that converts numbers to roman numerals. This is my code so far; however, it only works with numbers that are less than 400. Is there a quick and easy way to do this ...
6
votes
4answers
2k views
latex: printing a variable in roman numerals
I'm typesetting in LaTeX, and I'd like to display a "variable" (in my case, a reference \ref{blah} to an item number in list) in roman rather than the default arabic. Is there an easy way to do this? ...
6
votes
4answers
1k views
Can this Roman Number to Integer converter code be shorter?
95 bytes currently in python
I,V,X,L,C,D,M,R,r=1,5,10,50,100,500,1000,vars(),lambda x:reduce(lambda T,x:T+R[x]-T%R[x]*2,x,0)
Here is the few test results, it should work for 1 to 3999 (assume input ...
5
votes
2answers
378 views
Objective C Number to Roman Numerals
I've been searching forever for some sample code on convert from a number to roman numerals in objective c. Anyone know where I can find a good example?
Update:
Nevermind, found a PHP function that ...
5
votes
3answers
315 views
FormatProvider vs. extension method vs. new class
I was wanting to output an integer to roman numerals and ran across this answer by Jesse Slicer. It is an extension method, but I was wondering about taking advantage of ToString(string, ...
4
votes
3answers
1k views
How to convert integer value to Roman numeral string?
convert integer to its string representation in Roman Numbers in C ?
4
votes
8answers
350 views
Help me improve this Erlang?
So I'm really interested in Erlang. I can't find an excuse to use it for anything big, but I try to use it for toy problems from time to time.
Right now, I'm implementing a Roman Numeral translator. ...
3
votes
3answers
83 views
How to create regular expression checking Roman numerals?
I need to create regular expression which verifies if user inputs:
4 digits OR
value like XXXXXX-YY, where X is roman numerals from I to XXXIII and YY is two latin characters (A-Z)
3
votes
1answer
108 views
Matching Roman Numbers
I have regular expression
(IX|IV|V?I{0,3}|M{1,4}|CM|CD|D?C{1,3}|XC|XL|L?X{1,3})
I use it to detect if there is any roman number in text.
eregi("( IX|IV|V?I{0,3}[\.]| M{1,4}[\.]| ...
3
votes
3answers
62 views
.NET naming standard for class names with Roman numerals
I am working on a new project that involves government funding. As such we will have objects (classes, properties, methods) that reference government legislation which have names like Title II, Title ...
3
votes
2answers
422 views
Roman to decimal conversion
What do you think about this code? Is it the best way? Any improvement?
Roman.h
#ifndef ROMAN_H
#define ROMAN_H
#include <string>
#include <map>
typedef unsigned long int UL_I;
...
3
votes
2answers
181 views
Match several occurrences or zero (in this order) using regular expressions
I want to match roman numbers using Groovy regular expressions (I have not tried this in Java but should be the same).
I found an answer in this website in which someone suggested the following regex:
...
3
votes
2answers
173 views
Need to format character precedence in Strings
I'm currently writing a Roman Numeral Converter for the fun of it. The problem works up to the aforementioned character precedence.
Since Roman Numerals are not positional, i.e. III does not ...
3
votes
3answers
804 views
How to add roman numbers to the appendix pages in LaTex?
is there a way to have roman numbers for the pages at the end of the article - like \bibliography{...}, \listoffigures and acronym-lists?
Currently they show up without any numbers :(
Cheers,..
...
3
votes
3answers
1k views
How can I convert from integers to roman numerals using a syntax-directed translation scheme?
I'm reading the dragon book (just starting for now), and I found this exercise which I can absolutely not solve. I understand the concept, but building a context-free grammar for this looks like way ...
2
votes
2answers
92 views
MySQL Custom Function to Turn Roman Numeral Into Arabic
Ok, I need a MySQL Function that will convert a Roman Numeral String:
e.g. XXCVI
Into its Arabic numbering equivalent. Its a long story as to why I need it, I just do.
Based on a PHP function that ...
2
votes
1answer
201 views
Using type parameters and mixins in Scala
EDIT 2:
I managed to achieve the type safety I wanted in my exercise with RomanNumerals using a combination of mixins and type parameters with the code below. In essence what it does is after ...
2
votes
3answers
418 views
Java — Read from std input, one char at a time
I'm having trouble determining the best way to read some input in for a java program. It needs to read in the individual characters of a roman numeral, and then perform some operation on it.
There ...
2
votes
1answer
648 views
Single Regex for filtering roman numerals from the text files
I am stuck in between of a problem where only one pass of regular expression is allowed( some old hard code). I need the regex for roman numerals.
I have tried the standard one i.e. ...
2
votes
2answers
406 views
How to divide a string into parts - Roman numerals
I'm trying to divide a string into parts for reading Roman numerals. For example if the user enters
"XI"
I want the program to be able to understand that I is 1 and X is 10 in order for a data ...
2
votes
2answers
8k views
Changing Latex section numbering presentation
I'm trying to change how section numbering is displayed in a Latex document I'm working on. What I want to do is this:
Section Title
(i) Subsection title in normal weight
...
1
vote
2answers
71 views
Sorting html elements that were ordered by roman numeral IDs
I have generated HTML (i have no control of this) similar to this:
<ul id="list">
<li id="I">one</li>
<li id="II">two</li>
<li id="III">three</li>
...
1
vote
8answers
101 views
Why doesnt my parsing work?
Ive already edited. Thanks for the answers. But now it wont print out my output? :(
import java.util.Scanner ;
class Romans {
static Scanner s = new Scanner(System.in) ;
static String val;
...
1
vote
2answers
227 views
How do I approach my homework assignment to convert arabic numerals to roman numerals?
I need to convert Arabic to Roman. I have a method number(int place), that gets each digit from a certain number.
Example: 5821, where the number method at place 0 = 1; number(2) = 8, etc.
I now ...
1
vote
1answer
180 views
Regex matching punctuation and roman in lowercase [closed]
Possible Duplicate:
How do you match only valid roman numerals with a regular expression?
Hi,
How do I match regex to something like
[i])
[ii])
[iii])
[iv])
and so on...
Thanks
1
vote
3answers
321 views
Regular expression to extract post number and data from string
Hey I have a huge text which goes like this
some_data I POST postdata_1 IV POST postdata_4 III POST postdata_3 II POST postdata_2
So the post data has a the corresponding post number in Roman ...
1
vote
1answer
145 views
How to stem roman numerals in sphinx
Is there a way to stem Roman numerals in sphinx, so that Roman numerals are synonymous with Arab numerals?
For example, the query "Mafia 2" would be the same as "Mafia II", and vice versa.
1
vote
2answers
366 views
Java regex alternation operator “|” behavior seems broken
Trying to write a regex matcher for roman numerals. In sed (which I think is considered 'standard' for regex?), if you have multiple options delimited by the alternation operator, it will match the ...
1
vote
5answers
325 views
Roman representation of integers [closed]
Possible Duplicate:
How do you find a roman numeral equivalent of an integer
I am looking for a simple algorithm (preferably in Python). How to translate a given integer number to a Roman ...
1
vote
2answers
106 views
Regular expression for matching a variety of types of numbered lists
I'd like to create a (PCRE) regular expression to match all commonly used numbered lists, and I'd like to share my thoughts and gather input on way to do this.
I've defined 'lists' as the set of ...
1
vote
1answer
317 views
php's preg_match returning different number of matches for same pattern
I'm trying out preg_match with a roman numeral to integer converter. The problem is, for certain inputs, preg_replace seems to be giving too few matches. The code:
function ...
1
vote
2answers
1k views
“Missing number, treated as zero.” in LaTex
I want to get the Roman number of 2. So I use $\Roman{2}$ inside text. But then I got an error
! Missing number, treated as zero.
How can I fix it?
Thanks and regards!
0
votes
0answers
69 views
Integer -> Roman numeral converter: written in bad ruby, seeking good ruby [closed]
I'm writing a program to convert integers to Roman numerals (naively -- it doesn't know how to do the subtraction trick yet). What I have is functional, but it is not "Good Ruby".
VALUES = [
["M", ...
0
votes
1answer
71 views
Need the java's library to convert arabian digits to roman numerals
For my android application I need the library to convert arabian digits to roman numerals.
I think, that it's no so difficult to write this features myself, the more so my digit's range is not wide - ...
0
votes
2answers
419 views
Convert numbers to roman numerals? [closed]
Possible Duplicate:
How do you find a roman numeral equivalent of an integer
I need to write a JSP function that will efficiently convert an integer (from 1 - 3000) to a roman numeral.
0
votes
1answer
122 views
Use sed to convert roman numerals to arabic numerals
I have text file format like this
SKI
SKII
SKIII
SKIV
SKV
SKVI
SKVII
I want to convert it with sed command into numerical. Can you help me out?
SK1
SK2
SK3
SK4
SK5
SK6
SK7
Thanks a lot!
0
votes
3answers
59 views
A regex for Matching I.text in c#
I'm trying to parse a PDF to XML in c# and i want to extract headings like: I. INTRODUCTION, II. PAGE LAYOUT which are categorized by roman numerals from my file. I would like to write a regex to ...
0
votes
1answer
92 views
Representing Year as Roman Number [closed]
Possible Duplicate:
How to convert integer value to Roman numeral string?
Back in my college days, when learning C and all i had come across a question of representing a year in its ...
0
votes
3answers
128 views
Replace matched characters from regex in a string
I'm trying to figure out how to replace some text in this string:
'some text blah blah XII'
I need to replace the Roman Numerals with an empty string, resulting in:
'some text blah blah'
I have ...
0
votes
0answers
72 views
how to set page label in roman letters using acrobat scripting,the input is from the file name
i want to set the page label in roman letters..
the input is from the pdf file name....
for example..
1.9781107004665c03_pvi-xi[here vi is the starting page label and xi is the end]
...
0
votes
1answer
57 views
describe the task
I am from Russia. And english isn't my native language :)
I try to understand the task, but i am not ensured that i correct understood it.
Please, correct me.
http://pastie.org/1811424
class ...
0
votes
0answers
89 views
Page numbers in MS word 2007 [closed]
am trying to insert the page numbers in the word document. The document contains table of content and the document contents. I wanna insert roman numerals to the page numbers befor the first chapter n ...
0
votes
1answer
656 views
Need to change section to Roman, but keep Arabic for for subsection and subsubsection
I need to change my section numbering from Arabic, to Roman, beet keep the Arabic numbering in subsections and subsubsections. For example:
I. Section
1.1. Subsection
1.1.1. Subsubsection
II. ...
0
votes
2answers
139 views
Match Roman Numeral
Looking to validate/Match Roman Numerals, are there any libraries or functions that can do this?
Would a RegEx work?
Not sure about how to go about this, any thoughts? suggestions?
I did see this ...