0
votes
1answer
70 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 ...
4
votes
4answers
74 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
37 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 ...
0
votes
3answers
44 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
36 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
84 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
61 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
33 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
4answers
52 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
34 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
76 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
50 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
59 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
142 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
38 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
49 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
71 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
52 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
71 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
71 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
105 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
104 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
51 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
83 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
38 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
43 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
73 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 ...
0
votes
2answers
54 views

Combine two very similar ruby if statements

Right now I am finding a match in a string of text: if w.include? 'syn' w.sub!(/.*?syn\|/, '') return w unless similar?(word, w) elsif w.include? 'sim' w.sub!(/.*?sim\|/, '') return w ...
0
votes
3answers
36 views

Searching Scrabble dictionary for word with a blank tile (“ ”) character

Let's say I have a String called s that represents a move on a Scrabble board: "AARDV RK" I have a HashSet<String> called dict that contains the entire Scrabble Dictionary (~180,000 words!). ...
0
votes
1answer
54 views

Trouble with recursive text splitting

trying to split text via text-defined boundary markers using recursion and create a list of lists and strings containing all of the organized parts of the original text file. The split isn't ...
0
votes
1answer
62 views

Python TypeError: 'str' object is not callable when calling type function

I'm trying to split a wall of text into chunks of text and lists of texts based on headers set apart by key words. I figured the best way to do this would be recursion. Unfortunately I am getting the ...
36
votes
5answers
880 views

Extracting pairs of words using String.split()

Given a String such as String input = "one two three four five six seven"; Is there a regex that works with String.split() to grab (up to) two words at a time, such that: String[] pairs = ...
-1
votes
3answers
66 views

Get specific characters from string

I have many string format as : RGB:ABC.XX,DEF.XX,GHI.XX where ABCDEFGHI are numbers. I need to extract the R (ABC),G (DEF),B (GHI) from that String The problem is that the string can take many form ...
0
votes
3answers
35 views

sed to replace comma outside parentheses

I have this partial SQL string. select ID,to_char(ts2date(created_t),'DD-MM-YYYY'),name,segment_code from sometable Using sed, I tried to replace any comma that reside outside the outmost ...
0
votes
4answers
45 views

Regular expression to extract a specific string from a given string

I am having a string like: "abc xyz: ID# 1000123, this is test, test 1, test 1234, " I need to write a regular expression to extract the ID 1000123. I have tried some thing like: Regex ...
-5
votes
1answer
37 views

I need Regex and to find the occurrence of “Processing” keyword and print the following text if the first word is Processing [closed]

string s = textBox1.Text; string[] lines = s.Split(Environment.NewLine.ToCharArray()); foreach (string l in lines) { if (Regex.IsMatch(lines.(Here when i select .ToString() i get no o/p), ...
1
vote
2answers
49 views

Sentence formation: Punctuation checks in java

I want to check the quality of sentence formation. Specifically, I am looking to see if the end-user types a space after a punctuation. I am okay with a NLP library, or a simple java regex solution ...
1
vote
3answers
72 views

if then condition using regex in java

I have a pattern which goes like this String1 :"String2", i have to validate this pattern. here if u see there are two cases, the somestring1 can contain special characters if it is given within ...
0
votes
1answer
50 views

String parsing using RegEx

I have string as below. X:= FMLVAR("Function1", "Var1"); I would like parse the above string and get the 2 arguments ("Funtion1" and "Var1"). FMLVAR is function which accepts 2 strings as ...
2
votes
2answers
48 views

Increment last number in string

given the following string: Backticks[0].Folders[0] I need to increment the latter number. I'm not an expert with Regexp replacements, I tried this but it also selects the bracket. href = ...
-3
votes
1answer
20 views

Extract a specific word from string in PostgreSQL

I am using pgadmin version 1.16.1 and I need to extract the words 'login' and 'logout' from the result column url "http:/login-v1.abcd.com/service/abc/integration" "http:/xxxxxxxxlogout" ...
0
votes
1answer
59 views

regular expression for commenting out all print statements in a file if followed by a particular string

I have a file that looks similar to this: <?php print "hello world" . "<br/>"; print "foobar" . "<br/>"; ... // Process parameter if ($var) { print $var . ...
0
votes
3answers
61 views

Get data out of string

I am going to parse a log file and I wonder how I can convert such a string: [5189192e][game]: kill killer='0:Tee' victim='1:nameless tee' weapon=5 special=0 into some kind of array: ...
2
votes
7answers
8k views

How to remove numbers from a string with RegEx

I have a string like this: " 23 PM" I would like to remove 23 so I'm left with PM or (with space truncated) just PM. Any suggestions? Needs to be in PHP
17
votes
4answers
24k views

How to remove symbols from a string with Python?

I'm a beginner with both Python and RegEx, and I would like to know how to make a string that takes symbols and replaces them with spaces. Any help is great. For example: how much for the maple ...
96
votes
11answers
63k views

How do I replace multiple spaces with a single space in C#?

How can I replace multiple spaces in a string with only one space in C#? Example: 1 2 3 4 5 would be: 1 2 3 4 5

1 2 3 4 5 65