1
vote
4answers
48 views
Objective C Find closest color (rgb) match
I have a predefined array of rgb values. I want to be able to compare a user defined color to my array and return the closest match in Objective C.
Any help is greatly appreciate …
0
votes
2answers
47 views
jquery - check if string begins with something?
I know that I can do like ^= to see if an id starts with something, and I tried using that for this, but it didn't work... Basically, I'm retrieving the url and I want to set a cl …
0
votes
2answers
37 views
preg match email and name from to
i want to find name and email from following formats (also if you know any other format that been getting use in mail application for sending emails, please tell in comment :))
ho …
1
vote
3answers
98 views
How can I use LINQ to match words
I have a fair amount of questions and my first one is how can I do a simple LINQ query to match a word in a file? I'm not trying to be stupid but i haven't understood the documenta …
2
votes
2answers
59 views
How to pass a variable into regex in jQuery/Javascript
Is there a way to pass a variable into a regex in jQuery/Javascript?
I wanna do something like:
var variable_regex = "bar";
var some_string = "foobar";
some_string.match(/variab …
1
vote
1answer
37 views
Javascript regex in firefox extension
What could be going wrong here? The problem seems to be with the regex match statement. without it the alerts come, but as soon as I put it in everything goes quiet. Thanks so much …
1
vote
3answers
112 views
match array against string in java
I'm reading a file using bufferedreader, so lets say i have
line = br.readLine();
I want to check if this line contains one of many possible strings (which i have in an array). …
1
vote
3answers
102 views
find match between 2 sql queries
I have two queries from v$sqlarea. For example
query 1: select * from employee emp where emp.eid = 5
query 2: select * from employee v where v.eid = 15
Both are exactly the sam …
0
votes
6answers
127 views
JS: Check if var has “cheese” OR “cake” in it?
How can i check if a variable has something in it? I tried checking if a .match() returned null but that wasn't useful for checking with an OR?
All ideas would be gratefully appre …
0
votes
0answers
43 views
Javascript: Multiple match()? [closed]
Possible Duplicate:
How can I match multiple occurrences with a regex in JavaScript similar to PHP’s preg_match_all()?
How can i use multiple match's
I am validating …
0
votes
4answers
58 views
Load big XML files to mySQL database (PHP)
Hello There,
For a new project I need to load big XML files (200MB+) to a mySQL database. There are +- 20 feeds i need to match with that (not all fields are the same).
Now when …
0
votes
2answers
174 views
Excel Macro Match and Copy/Paste
Hi!
I'm trying to build an Excel macro that will allow me to do the following:
I have two excel sheets.
I want the macro to match all the values in Sheet1, col A against cell A1 …
1
vote
2answers
66 views
How to return a Ruby array intersection with duplicate elements? (problem with bigrams in Dice Coefficient)
Hi there
I'm trying to script Dice's Coefficient, but I'm having a bit of a problem with the array intersection.
def bigram(string)
string.downcase!
bgarray=[]
bgstring="%" …
0
votes
3answers
51 views
Regex match question
If I have a string such as
lotsofcrap"somethingimportant"moreotherstuff
is it possible to get Regex to match just whatever is between the " ", excluding the quotation marks? So …
0
votes
1answer
59 views
Mysql match against alternative
I need a search with a relevance algorithm and the database is mysql. I have to sort the results by date, if keyword is in title or not, number of apparitions of the keyword in th …
