0
votes
1answer
30 views

Python regex search only finding the first pattern

I am using python's re module to search in a string for certain words. For a simple example, I have a list called valid_words and a string called valid_string. valid_string = "Use Use%" valid_words ...
0
votes
1answer
48 views

Match more than one occurence in a string

I'm trying to match a tag values (music kind styles) of an xml. This are some examples: One music genre: (Pop) (rel="tag">Pop) <span class="genres"><a ...
1
vote
4answers
53 views

Trying to understand an easier way with RegEx

To give you an idea, I'm trying to accomplish grabbing any string with this information. IP Address for: John Doe on 05/20/13 I basically need to find all strings in that format.. I am using date ...
1
vote
1answer
29 views

Regex pattern to split the string based on numeric characters

I'd like to have a regex pattern that splits the string based on the numbers present in them 50cushions => [50,cushions] 30peoplerescued20children => [30,peoplerescued,20,children] ...
-5
votes
1answer
64 views

How can I replace all chars in string except another string [duplicate]

Given a string and a non-empty word string, return a version of the original String where all chars have been replaced by pluses ("+"), except for appearances of the word string which are preserved ...
2
votes
2answers
76 views

Perl: How to replace a variable by its value

Suppose, if a table has a column called test and inside test I have written a row as "Dear $name, Hello" where $name is a variable. I need to select this row for which I'm doing my $test = ...
13
votes
4answers
777 views

Can someone break this lambda expression down for me?

I'm looking at the solution from Token Replacement and Identification: string result = Regex.Replace( text, @"\[%RC:(\d+)%\]", match => dict[int.Parse(match.Groups[1].Value)]); And ...
1
vote
3answers
47 views

Java: replaceFirst does not work, but replace works on the exact same input?

I am writing a program where a portion of it needs to replace part of the string without deleting duplicates so I am using replaceFirst() which is not working properly. INPUT: lock: "O_2_^-^" str: ...
1
vote
5answers
38 views

Preg_match and substr together

I have a string that I need to test to see if the characters after the [0] character (the very first) are numbers or not. So example : C is [0] I then need to check if the remaining characters are ...
-1
votes
3answers
51 views

Ruby - how to pull out that is betweet two “points”?

I have a text like this: ... Sentence one. hsjdhsd jghdsjghjdskhgjksdh kjghdsjkg sdgsdg dgds hfdhdf h fdh dfh Sentence two. gdjshagjhsdga sdgjhsdkjgh adskjghdsa gs a gfdgfdhfdhh ... And I would ...
-1
votes
3answers
49 views

php regex or string check to make sure a variable contains specific characters

I need to make sure a variable that holds product id contains only specific characters. For integer-only variables I'm using is_numeric to check. But for a product id, the variable can contain only ...
3
votes
4answers
136 views

convert string to int in java

i have a string that has a int value in it. i just want to extract the int value from the string and print. String str="No. of Days : 365"; String daysWithSplChar = ...
0
votes
4answers
37 views

Python regex remove all before a certain point

Let's say I got a string: F:\\Somefolder [2011 - 2012]\somefile And I want to use regex to remove everything before: somefile So the string I get is: somefile I tried to look at the regular ...
-1
votes
4answers
149 views

how can I make string equation? [closed]

I need a function public Func<double,double,bool> StringToEquation(string equation); that takes string and make it function. for example, the string xy = y^3 * (sin(x) + ln(x)) + pi will become ...
5
votes
2answers
42 views

Java Regex Metacharacters

I found this thread and one of users on it posted the following line of code: String[] digits2 = number.split("(?<=.)"); I have consulted a couple of sources- like 1 and 2-to decipher what this ...
0
votes
1answer
34 views

RegEx is not doing what I want

I want to retreive a part of a string, my question is if I can get the correct string without touching the matched string (substring or splitting), I know is easy to do a split/substring but I want to ...
3
votes
4answers
154 views

What's faster: Regex or string operations? [closed]

When should I use Regex over string operations and vice versa only regarding performance?
0
votes
1answer
38 views

Finding strings that are each separated by the same string

I am using python regular expressions. My inputs are strings like these: [In 1]: Names = "John r Spencer Farrow r David K r Gillian" [In 2]: Names = "Andrew r Eli Ltd" i.e. There are any number of ...
1
vote
4answers
72 views

Only take URL Part from String

I want to get the URL from a string so I can show the url in WebView. example strings: exp 1- Hello dilip refer this url www.google.com. exp 2- hi ramesh this is good for android http://android.com ...
0
votes
1answer
72 views

How to replace strings in Java (Regex?)

Hi and first of all thanks for your help. I need to perform some data manipulation to a great number of strings in Java. This is an example of the kind of string I have to modify: <span ...
5
votes
4answers
89 views

How can i use string#split to split a string with the delimiters + - * / ( ) and space and retain them as an extra token?

I need to split strings containing basic mathematical expressions, such as: "(a+b)*c" or " (a - c) / d" The delimiters are + - * / ( ) and space and i need them as an independent ...
0
votes
2answers
57 views

Replacing HTML String & Avoiding Tags (regex)

I'm trying to use JS to replace a specific string within a string that contains html tags+attributes and styles while avoiding the inner side of the tags to be read or matched (and keep the original ...
1
vote
3answers
49 views

replacing word with another word from the string in python

I have a string: "y, i agree with u." And I have array dictionary [(word_will_replace, [word_will_be_replaced])]: [('yes', ['y', 'ya', 'ye']), ('you', ['u', 'yu'])] i want to replace 'y' with ...
0
votes
1answer
37 views

remove all instances of words in array out of string

I am wondering what is the best way to do the following in PHP. I have an array of words to ignore and I want to remove all instances of those words out of a string. But it has to words regardless ...
2
votes
1answer
97 views

RegEx in java to replace a String

I've been trying to replace this mathematical function x^2*sqrt(x^3) to this pow(x,2)*Math.sqrt(pow(x,3)) so this is the regex /([0-9a-zA-Z\.\(\)]*)^([0-9a-zA-Z\.\(\)]*)/ pow(\1,\2) it works ...
1
vote
2answers
65 views

Extract string between two strings in java

I try to get string between <%= and %>, here is my implementation: String str = "ZZZZL <%= dsn %> AFFF <%= AFG %>"; Pattern pattern = Pattern.compile("<%=(.*?)%>"); String[] ...
1
vote
2answers
35 views

Regular expression to move numbers from the start of a string to the end

I am new to regular expressions and I'm wondering what expression I would use to move some numbers from the start of a string to the end, i.e. I would like to transform this: '01 some text here of ...
0
votes
3answers
55 views

Finding a String in a folder path using RegEx

I was wondering could you help me with the following issue: I am trying to use RegEx to find a string within a folder path. For Example: C:\Users\user\Documents\mystarfleet34academybadge I would ...
0
votes
3answers
42 views

Extracting multiple string values of variable length before and after a delimiter in a list

I have several Python lists in the following format: rating = ['What is your rating for?: Bob', 'What is your rating for?: Alice', 'What is your rating for?: Mary Jane'] opinion = ['What is your ...
3
votes
4answers
85 views

Best way to provide the user an escape string

Suppose I want to ask a user what format they want a certain output to be in and the output will include fill-in fields. So they provide something like this string: "Output text including some field ...
3
votes
4answers
54 views

Regular expression or function to search for word and return the next one

I'm looking for a function/regular expression that finds the given word and retruns the next one for example: Giving the input "is" and searching in this string "the force is strong with you ...
1
vote
2answers
60 views

How to remove 0 from a string using sed

I have string "001.036.020" and I need to convert it to "1.36.20". Saying other words I need to remove all "0" before digit. Is it possible to do this using sed?
4
votes
3answers
145 views

Parsing using Pattern in Java

I want to Parse the lines of a file Using parsingMethod test.csv Frank George,Henry,Mary / New York,123456 ,Beta Charli,"Delta,Delta Echo ", 25/11/1964, 15/12/1964,"40,000,000.00",0.0975,2,"King, ...
0
votes
1answer
44 views

Ruby method undefined for nilClass errors for string methods

I don't understand why the below doesn't work: #TODO: #Open file-io-samples/MultipleLinesCustomDelimiter.txt #Break each line into fields #Convert Times from mm:ss to seconds #Remove any redundant ...
2
votes
4answers
50 views

Easily extract data from string formatted a specific way

What is an easy way to take a string that is formatted this way: c:7|bn:99 and be able to use that string easily? So if I wanted to get the number that is behind the c:, How could I get that ...
0
votes
1answer
39 views

ruby gsub function in java, replaceAll maybe?

I've been trying to translate this funcFormat = funcFormat.gsub(/sqrt\((.*)\)/,'Math.sqrt(\1)') to this in java funcFormat = funcFormat.replaceAll("sqrt((.*))","Math.sqrt($1)"); or is ...
-2
votes
1answer
42 views

Indexing every occurrence of a key in an array of strings with perl

I have an array of strings @Sentences and I am trying to find the best way to index each occurrence of every word with respect to the line number they are on. I thought to do this with a nested for ...
1
vote
6answers
72 views

String substring or reg expr

I have got a problem with getting three params from console. For example the user enter to the console so line: '/s:http://asdasd.asd /e:device /f:create' string params = Console.ReadLine(); // ...
0
votes
3answers
82 views

Java String/Regex Replace

I'm quite new to regex. Not sure how to do the follow: Replace ":p_id" with a specific value. For example when I simply want to replace ":p_id1" with a value, it also replaced ":p_id10" with the ...
1
vote
2answers
54 views

Javascript mark substrings onchange event

I am trying to highlight substrings of a large string. The following code only highlights if the substring is the first letter of the large string. How can I fix this? Thanks in advance function ...
-3
votes
3answers
80 views

Parsing comma-separated values containing quoted commas and newlines

I have string with some special characters. The aim is to retrieve String[] of each line (, separated) You have special character “ where you can have /n and , For example Main String ...
0
votes
1answer
78 views

Ignoring ' (apostrophe) from RegEx

I've a RegEx and would like to ignore any ' (apostrophe) within the string. RegEx discussion can be found within the discussion String manipulation: How to replace a string with a specific pattern ...
6
votes
2answers
108 views

Split String By Character

I have a case in which I'm doing the following: final String[] columns = row.split(delimiter.toString()); Where delimiter is a Character. This works fine when I need to split based on tabs by ...
-2
votes
2answers
110 views

Java Program - Email address verification using Strings and RegEx

The problem statement goes like this: We need to create a String data type called emailId The email ID has to be set using appropriate setter methods. The validation rules for the email ID check ...
0
votes
5answers
54 views

how to extract a whole sentence by a single word match in a string?

So I have got a whole string (about 10k chars) and then searching for a word(or many words) in that string. With regex(word).Matches(scrappedstring). But how to do so to extract the whole sentence, ...
3
votes
2answers
86 views

Finding words around a substring

I have to extract two words before and after my substring match in a large string. For example: sub = 'name' str = '''My name is Avi. Name identifies who you are. It is important to have a name ...
0
votes
4answers
40 views

Removing many types of chars from a Python string

I have some string X and I wish to remove semicolons, periods, commas, colons, etc, all in one go. Is there a way to do this that doesn't require a big chain of .replace(somechar,"") calls?
0
votes
3answers
44 views

Regex - PHP - Match a string start with number and : end before number: [closed]

I have a string like that: 1: Blah blah blah blah 2:blah blah blah blah .... 100: blah blah blah blah I wanna replace it with <span class="meaning">1: Blah blah blah blah</span> ...
0
votes
3answers
94 views

How to format tweets using python through twitter api?

I collected some tweets through twitter api. Then I counted the words using split(' ') in python. However, some words appear like this: correct! correct. ,correct blah" ... So how can I format the ...
0
votes
2answers
35 views

How to retrieve url from string in shell?

I want to extract the url from a string with shell/bash script, if there is more than one url in the string, then only the first one should be returned. I have provided some examples of input and ...

1 2 3 4 5 66