Tagged Questions
14
votes
10answers
4k views
How can I find repeated letters with a Perl regex?
I am looking for a regex that will find repeating letters. So any letter twice or more, for example:
booooooot or abbott
I won't know the letter I am looking for ahead of time.
This is a question ...
4
votes
4answers
2k views
Regex to match 4 repeated letters in string using java pattern
i want to match something like aaaa, aaaad, adjjjjk.
Something like this ([a-z])\1+ was used to match the repeated characters but i am not able to figure this out for 4 letters.
3
votes
2answers
922 views
Regex: How to match a string that contains repeated pattern?
Is there a regex pattern that will match a string that contains repeated pattern, e.g.:
"a"|"b","c"|"d",...,"y"|"z"
Do you have any idea?
Thanks.
2
votes
5answers
185 views
Use regex to find out if a string is just a single repeated character
I'm writing a PHP script and I'm at this point where I need to know if a string consists of one character that's just repeated. The character is even a specific one: it's z.
For example, I want to ...
1
vote
5answers
643 views
How to find a repeated string and the value between them using regexes?
How would you find the value of string that is repeated and the data between it using regexes? For example, take this piece of XML:
<tagName>Data between the tag</tagName>
What would be ...
0
votes
1answer
95 views
Splitting a string by a repeated regex in Ruby
I would like to parse text and separate it into tasks and subtasks:
'Asubsubsubtask:Bsubtask:Ctask:D'.split(/((sub)*task)\:/i)
#=> ["A", "subsubsubtask", "sub", "B", "subtask", "sub", "C", "task", ...
0
votes
9answers
837 views
C# Best way to replace x repeated tokens by one token
If I have:
Some text
More text
Even more text
What is the more elegant way to obtain:
Some text
More text
Even more text
All with knowing the number of repeated tokens