Tagged Questions
0
votes
1answer
100 views
Setting password for android app using lock screen patterns
I want to set a password for my application which it will require at the time of execution. I want that it should be like lock screen patterns, is it possible?
If yes please help me out to find some ...
2
votes
1answer
74 views
Log parsing strategy using scala
So yesterday I had a logfile which had comma separated entries in a provided log.txt such as follows:
entry1.1,entry1.2,entry1.3
entry2.1,entry2,2,entry2.3
..........................
So with much ...
0
votes
4answers
95 views
Filtering HTML document with 1-10k keywords
I have a html Document and want to filter it against the occurrency of multiple (1 - 10k) [1k at the moment, later on up to 10k] keywords.
I have a precompiled regex which stores my searchterms like:
...
1
vote
3answers
154 views
Calling external services in scala code with dependencies
I am facing a major issue with my design at this juncture. My method is trying to accomplish the follows:
Insert the passed in object into the database.
Get the autoincremented id from the insert ...
2
votes
1answer
187 views
using pattern and matcher to get specific values from string
I want to use pattern that return to me the (ssid, psk, proiority) as key
and the value associated for each key.
and if there is a way to understand the expressions that i have to use
like
...
0
votes
1answer
78 views
Design pattern help required
Are there any different design patterns like UI design patterns and logic design patterns? If yes, please anyone can list different design patterns for different kinds? What is the default user ...
8
votes
3answers
760 views
Replacing methods that use backgroundworker to async / tpl (.NET 4.0)
My questions are many. Since I saw. NET 4.5, I was very impressed. Unfortunately all my projects are .NET 4.0 and I am not thinking about migrating. So I would like to simplify my code.
Currently, ...
0
votes
1answer
161 views
Searching for a 2D Array Pattern using Recursion in a Dataset
Can someone please make some suggestions on a better way to search for a pattern in a CSV table/dataset using javascript?
var dataset= [[0, 0, 0], [0, 1, 1], [0, 1, 1]];
var pattern = [[0, 0, 0], ...
1
vote
2answers
74 views
Pattern not escaping characters
I've got this pattern which I use with preg_match and I can't figure where I go wrong.
$pattern = "{(\[fn:)([0-9]*)(\])((?:\\\[|[^\[])*)}";
It has to match each [fn:i]text_multiline untill another ...
0
votes
2answers
178 views
Extracting content from text files with generic rules
I have a lot of text data with different structure. I need to extract parts of these texts based on some text-based rules. I would use regular expressions but unfortunately the people who are using ...
0
votes
2answers
279 views
How do I use pattern and matcher to split a large string up into specific substrings in Java?
I've never done this before, but basically I'm trying to break a large string up into substrings (based on a regular expression) and then make use of those substrings one at a time. Can anyone show me ...
4
votes
3answers
375 views
Pattern: how subtract matched character in character class?
Is it possible to subtract a matched character in a character class?
Java docs are having examples about character classes with subtraction:
[a-z&&[^bc]] - a through z, except for b and ...
4
votes
3answers
3k views
Shape/Pattern Matching Approach in Computer Vision
I am currently facing a, in my opinion, rather common problem which should be quite easy to solve but so far all my approached have failed so I am turning to you for help.
I think the problem is ...
0
votes
2answers
1k views
How to extract IP:PORT from strings java
I have a text file, and loop though the file like this:
for ( int i = 0; i < this.textLines.size(); i++ ) {
String tempString = textLines.get( i );
So now I have ...
0
votes
2answers
112 views
SQL new column with pattern match
I have a column with a url sting that looks like this
http://www.somedomain.edu/rootsite1/something/something/
or
http://www.somedomain.edu/sites/rootsite2/something/something
Basically I want to ...
2
votes
2answers
669 views
Java repetitive pattern matching (3)
I am trying to solve a simple Java regex matching problem but still getting conflicting results (following up on this and that question).
More specifically, I am trying to match a repetitive text ...
1
vote
3answers
107 views
Verifying that a Regular Expression Matches
I have a regex that, according to what I can tell and to what RegexPal says, does not match the full string I am testing (only its rightmost part). However, matcher.matches() returns true!
So, what ...
0
votes
2answers
368 views
Java repetitive pattern matching (2)
Consider the following regex:
(([^\|])*\|)*([^\|]*)
This matches repetitive string patterns of the type
("whatever except |" |) {0 to any times} ("whatever except |" |) {1 time}
So it should ...
0
votes
2answers
124 views
Generate sensible strings using a pattern
I have a table of strings (about 100,000) in following format:
pattern , string
e.g. -
*l*ph*nt , elephant
c*mp*t*r , computer
s*v* , save
s*nn] , sunny
]*rr] , worry
To simplify, assume a * ...
4
votes
2answers
210 views
lua variable in pattern match
Im just wondering if it is possible to put a variable in a pattern match in Lua. Like something similar to the following:
var = "hello"
pattern = string.match(datasource, "(var)%s(a%+)")
The reason ...
3
votes
1answer
120 views
Lua pattern matching: problem specifying the pattern to match
I am attempting some pattern matching in Lua and have hit a small problem. I am trying to match everything from the first newline character in my data up to the following pattern _\x0C.
here is the ...
1
vote
4answers
594 views
How to extract words in multiple line in unix?
I want to extract some specific words from the following string :-
Exported Layer : missing_hello
Comment :
Total Polygons : 20000 (reported 100).
I want to extract the word ...
3
votes
4answers
6k views
Matching Multiple Patterns using Java Regex
I have a file containing records of the following format:
1285957838.880 1 192.168.10.228 TCP_HIT/200 1434 GET ...
5
votes
2answers
682 views
What is a nested pattern in Haskell?
What is a 'nested' pattern in Haskell. I hear the term everywhere but am not sure what the it actually means. How would you define it? Any examples?
Thanks in advance.
EDITED TO ADD: (as quoted in ...
1
vote
2answers
240 views
Trouble with nawk and OFS in BASH
I am working on a script to extract the processor set number followed by the processor ids that fall under that processor set in Solaris in bash shell:
Here is the output I want to extract from: ...
0
votes
1answer
377 views
Match characters based on a text pattern “image”
What would be a good way to approach matching a String pattern of X's to any uppercase letter in the alphabet, A-Z, given a master pattern. I'm looking for either a code example (in Java) or just a ...
2
votes
1answer
437 views
How do I do pattern matching in strings?
Is there a way to iterate over a comma-separated string, then doing something with the matches? So far I have:
for a in string.gmatch("this, is, a commaseparated, string", "(.-)[,]") do
print (a)
...
0
votes
1answer
338 views
Finding the first string that matches a pattern in Lua (XML pattern matching)
I'm currently using the following code to parse a part of an Xml file (I first read the entire file into a single string).
for xmlMatch in xmlString:gmatch("<MyXmlElement.*</MyXmlElement>") ...
0
votes
3answers
77 views
Regular expression help
I need a help with regular expression as i do not have good knowledge in it.
I have regular expression as
Regex myregex = new Regex("testValue=\"(.+?)\"");
What does (.+?) indicate?
The ...
0
votes
2answers
2k views
Perl: pattern match a string and then print next line/lines
I am using Net::Whois::Raw to query a list of domains from a text file and then parse through this to output relevant information for each domain.
It was all going well until I hit Nominet results as ...
0
votes
1answer
290 views
Performance issues with Regex class inside a loop
I have a data table containing two columns (pattern and neworder) and cca 100 rows (all with different patterns).
What I am doing is matching an input string with pattern (grouped matches), and if ...
4
votes
1answer
169 views
String chomping match expression with bound variable
The following shell sessions shows some behavior I would like to understand:
1> A = "Some text".
"Some text"
2> "Some " ++ R = A.
"Some text"
3> R.
"text"
4> B = "Some ".
"Some "
5> B ...
0
votes
2answers
111 views
Is it ok to implement State pattern here?
I have a Request class that can be in one of the following states:
Draft,
Submitted,
Approved,
Rejected,
InMission,
Completed
The state of the Request object can be changed by calling one of ...
0
votes
2answers
49 views
span insertion logic help
I have a text like this
"You are advised to grant access to these settings only if you are sure you want to allow this program to run automatically when your computer starts. Otherwise it is better ...
2
votes
3answers
1k views
C# pattern matching
I am bit new to c#, i am looking for a string matching pattern to do the following,
I have a string like this
The book will be showcased at a
reception in Number 11 Downing Street
and will ...
13
votes
2answers
6k views
Ocaml: Match expression inside another one?
I'm currently working on a small project with Ocaml; a simple mathematical expression simplifier. I'm supposed to find certain patterns inside an expression, and simplify them so the number of ...

