The Roman numeral system is an ancient way of representing numbers. The most common symbols are I, V, X, L, C, D, M.
1
vote
2answers
45 views
Sort roman number in php
I have a classes in roman number like
I
II
III
IV
IX
V
VI
VII
XI Commerce
XI Arts
XI Science
i have tried sorting by roman number function but due to ...
0
votes
1answer
46 views
Splitting string based on list values into a list in Python
At the moment I'm trying to create a new list from a string, based on matching values from another list. For example my list of values is:
['IX', 'C', 'D', 'XL', 'I', 'XC', 'M', 'L', 'CD', 'X', 'IV', ...
-4
votes
1answer
92 views
Convert roman to words/number in Perl
I have an input from a file, and I need to convert the roman numerals in the input to words or integers.
In my article there are combination of strings, numbers, roman numbers, but i need only to ...
3
votes
1answer
148 views
Numbers to Roman Numbers with php
I need to transform ordinary numbers to Roman numerals with php and I have this code:
<?php
function roman2number($roman){
$conv = array(
array("letter" => 'I', "number" ...
2
votes
2answers
204 views
Roman numbers to integers
I have a transfer with products that unfortunately has to get matched by product name. The biggest issue here is I might get duplicate products on account of roman numbers. Sometimes the same product ...
0
votes
1answer
96 views
How to convert a roman numeral to an NSNumer
I am making a calculator that has a roman numeral mode. I have the operations performed in the model view, and a view controller. My problem is that I need to convert the roman numeral to a NSNumber. ...
1
vote
0answers
83 views
Replacing roman numbers by corresponding numerals
I am developing a product search platform. I try to show the most appropriate product first based on string matching as I have no other means of identifying what user has searched for. However, one ...
5
votes
2answers
5k views
Converting Integers to Roman Numerals - Java
This is a homework assignment I am having trouble with. I need to make an integer to Roman Numeral converter using a method. Later, I must then use the program to write out 1 to 3999 in Roman ...
3
votes
1answer
176 views
Roman numerals as page number in database
Suppose I have the following table:
create table Section (
id integer not null primary key,
book_id integer not null foreign key references Book (id),
title varchar(100) not null,
...
2
votes
1answer
2k views
java regex special character
I am using the following regular expression to find roman numerals in a string:
^M{0,4}(CM|CD|D?C{0,3})(XC|XL|L?X{0,3})(IX|IV|V?I{0,3})$
How can I change it to detect roman numerals preceded or ...
0
votes
0answers
185 views
Roman Numerals in MIPS
I'm working on a little arithmetic project with roman numerals; pretty simple, except that it's on a MIPS machine...
Anyway, what the program will do is basically read the input roman numeral, convert ...
4
votes
3answers
700 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)
0
votes
4answers
2k views
Convert a number into a Roman Numeral in javaScript
How can I convert integers into roman numerals?
function romanNumeralGenerator (int) {
}
For example, see the following sample inputs and outputs:
1 = “I”
5 = “V”
10 = “X”
20 = “XX”
3999 = ...
0
votes
0answers
564 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
324 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 - ...
2
votes
2answers
429 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 ...
1
vote
2answers
191 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>
...
0
votes
2answers
1k views
Convert numbers to roman numerals? [duplicate]
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.
4
votes
1answer
228 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}[\.]| ...
0
votes
1answer
320 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!
10
votes
6answers
7k 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 ...
0
votes
3answers
123 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 ...
3
votes
3answers
108 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 ...
0
votes
1answer
146 views
Representing Year as Roman Number [duplicate]
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 ...
25
votes
10answers
2k 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 ...
0
votes
3answers
501 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 ...
15
votes
10answers
5k 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 ...
1
vote
2answers
391 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 ...
5
votes
2answers
997 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 ...
0
votes
1answer
71 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
175 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 ...
3
votes
1answer
5k 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
276 views
Match Roman Numeral [duplicate]
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 ...
3
votes
2answers
1k 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;
...
1
vote
1answer
341 views
Regex matching punctuation and roman in lowercase [duplicate]
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
10
votes
3answers
8k views
How to convert integer value to Roman numeral string?
convert integer to its string representation in Roman Numbers in C ?
1
vote
3answers
516 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 ...
0
votes
2answers
119 views
What is the best way in python to get a denormalized array from this ordered array?
I have this array:
>>> print raw_data
['LEVEL 1',
'SUBJECT A',
'GROUP X',
'COMMENT i',
'COMMENT ii',
'COMMENT iii',
'GROUP Y',
'COMMENT iv',
'COMMENT v',
'COMMENT vi',
'LEVEL 2',
'SUBJECT ...
1
vote
1answer
231 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.
0
votes
3answers
389 views
Why doesn't my conversion code for roman numbers ('mcmxcix' for e.g) to real numbers work?
I want to convert Roman numerals, such as "mcmxcix", to arabic integers like "1999".
My code looks like:
#~ I = 1 V = 5 X = 10 L = 50
#~ C = 100 D = 500 M = 1000
def roman_to_integer roman
len = ...
1
vote
2answers
2k 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 ...
0
votes
1answer
397 views
How to convert a Roman value to integer in SQL Server?
I have say MDCCCLXXXVIII which is 1888 in Arabic number or D in Roman is 500 in Arabic or MIV is 1004, etc.
In a single TQL Query how can this be achieved?
Thanks
1
vote
5answers
464 views
Roman representation of integers [duplicate]
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 ...
0
votes
1answer
849 views
LaTeX: Extract numbers and letters from command variables and conversion to roman numerals
I'm writing a thesis and have been searching on many occasions trying to find a solution to my programming problem. Basically, I have a series of items that I've distinguished in my research data as ...
3
votes
2answers
240 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:
...
16
votes
2answers
3k 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 ...
0
votes
1answer
640 views
Custom pages number (roman numbering) on pdf first pages
I need to set page numbers on a pdf I'm creating, so that the first 3 pages would be i,ii,iii and then the following pages starting from 1,2,3,4,5...and so on..
How can i do it with itextsharp??
...
2
votes
1answer
305 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 ...
1
vote
2answers
211 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 ...
2
votes
3answers
1k 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 ...

