The replaceAll() method in java (and similarly named methods in other languages) is used to replace all instances of a character in a string with another character.
0
votes
2answers
35 views
Java regex space matches $ and * ??
I'm not understanding something about how Java's regex matching for \s works. In the simple class below, \s seems to match [at least] $ and *, which is worrisome. When I don't include \s, the last ...
0
votes
1answer
31 views
how to specify text enclosed in square brackets [duplicate]
I have a string that contains multiple occurrences of text enclosed in square brackets that I need to remove such as:
10/21/2012 12:12:15 [12:12:28] Admitted Last,First (Card #555) at Lobby ...
0
votes
3answers
52 views
Replacing Characters in a String with each character from another String
Essentially I need write a string method that receives two string arguments and replaces every character that exists in the second String with "" in the first. For example the first String toBeFixed = ...
0
votes
1answer
54 views
Java replace matched regex
Sorry i had to re write this question i was in the middle of finishing it and someone closed it.
they weren't kind enough to explain why so i had to repost?
please inform me what is confusing.
Main ...
0
votes
1answer
64 views
Java replace Matcher
I want to find replace part of what is matched.
Example:
this is awesome look at this two letter words get replaced
the return would be
this <h1>is</h1> awesome look ...
-3
votes
2answers
51 views
Java String ReplaceAll (Regex Help) [closed]
I have the following String:
String str1= "ABCD";
I want the following String
String str2 = "AD"
Therefore, I would like something along the lines of this:
String str2 = str1.replaceAll("/* ...
0
votes
3answers
63 views
Can we do multiple replaces using replaceAll() in java
The whole idea is to replace space followed by a comma (, ) or replace comma followed by a space ( ,) with only single comma(,). Can we do some thing like follows?
strLine = strLine.replaceAll(", | ...
-3
votes
5answers
75 views
replace in java using regular expression
suppose I have a string
String = ".... helllo.... good \"morning\" .....\" "
I want to get output as
helllo good morning
how can I do that using regular expression in JAVA? I have done ...
0
votes
2answers
95 views
String.replaceAll() - Replace “I” with “You” and vice-versa
String inputString = args[0];
String out2 = inputString.replaceAll("I", "you");
String out1 = out2.replaceAll("you", "I");
System.out.println(out1);
Above is the code in the main method. It's ...
1
vote
4answers
123 views
How resolve a replaceAll of a replaceAll
I have a little problem.
I have a text that i have to read in browser several time.
Everytime, I open this text, automatically start a replaceAll that i wrote.
It's very simple, basic but that problem ...
0
votes
1answer
39 views
Mathematica replaceall
I tried to replace some expressions with a function, but some terms were not changed.
Input:
b + 2 *a /. (b*m_ + a*n_) :> chi[m, n]
Out
2 a + b
but if instead of 1 I put 3*b
3*b + 2 *a /. ...
1
vote
4answers
112 views
'\' Getting Stripped Automatically In StringObject.ReplaceAll method in Java
I am using Jre 1.6.
I am executing the following lines of code:
String unicodeValue = "\u001B"; text = text.replaceAll("" + character, unicodeValue);
Here, text is a string object containing an ...
0
votes
1answer
30 views
using replaceAll to get a double
I need to ectract a double out of a String. The problem is, that the String looks like this:
"13,05 €"
Now I tried to extract just the number, using regex.
...
6
votes
2answers
102 views
Java replaceAll with backreferences [duplicate]
Possible Duplicate:
String.replaceAll() anomaly with greedy quantifiers in regex
I was writing code that uses Matcher#replaceAll and found following result highly confusing:
...
0
votes
2answers
200 views
Reading & writing Files - Java empty spaces
I want to read from a file and write to a file. The input file is as follows
<ORLANDO> <0%>
As I remember, Adam, it was upon this fashion bequeathed me by will but poor a thousand ...
1
vote
1answer
111 views
combine two java regex
Having to use regex for the first time and although I almost achieved what I require I do not seems to be able to combine into a single statement.
I have a string of words where I wish to replace \n ...
0
votes
3answers
82 views
get substring and replace with previous text in java
i get crawled website from bean via getWebsite(). I get website some time http://www.stackoverflow.com and some time get http://stackoverflow.com. My question is i want to replace with ...
5
votes
3answers
145 views
How to remove embedded braces in Java string?
I have a Java string that may contain "{" and "}" pairs, multiple times, inside a larger string:
"My name is {name}. I am a {animal}. I like to {activity} whenever it rains."
etc. I am trying to ...
0
votes
1answer
117 views
Java replaceAll method with a variable string and escaped dot
I'm having a hard time figuring this one out, so I ask for your help. Here's the deal:
String str = "02-EST-WHATEVER-099-00.dwg";
String newStr = ...
0
votes
2answers
80 views
about java, String.replaceAll
I've been trying to solve this problem, i did a research a little about the replaceAll method and it seems that it uses a regular expression. But i never heard of any regular expression that contains ...
1
vote
2answers
71 views
String replaceAll with conditions
I am not good in regular expressions and I need help in replacing the string.
String str = "Name_XYZ_";
str = "XYZ_NAME_";
So how can I replace "Name_" or "_NAME_" from above two strings ...
1
vote
4answers
126 views
Replace all content within braces?
In the end I need a regex which basically converts me a phone number into a E164 conform number. As for now i got this:
result = s.replaceAll("[(*)|+| ]", "");
It replaces everything fine: the ...
4
votes
2answers
293 views
Java ReplaceAll Regular Expression With Exclusions
I am trying to replace all instances of sentence terminators such as '.', '?', and '!', but I do not want to replace strings like "dr." and "mr.".
I have tried the following:
text = ...
3
votes
1answer
1k views
Java string replaceAll()
I've been wondering if for example:
JTextPane chatTextArea = new JTextPane();
s.replaceAll(":\\)", emoticon());
public String emoticon(){
chatTextArea.insertIcon(new ...
0
votes
4answers
124 views
Java replaceAll and regex
I'm working on Android and I want to replace all ocurrences of a certain {character} in a String with another String.
For example, if the character we're talking about is 'a'and the replacement is ...
2
votes
3answers
129 views
Replace String in Java with regex and replaceAll
Is there a simple solution to parse a String by using regex in Java?
I have to adapt a HTML page. Therefore I have to parse several strings, e.g.:
href="/browse/PJBUGS-911"
=>
...
0
votes
3answers
245 views
ArrayList replaceAll() not working
I don't know what's the problem in my code.Whatever I try to replace, not wroking.
I have a private static ArrayList<String> lista.
I fill this. Then later in another method, whatever I try, I ...
6
votes
2answers
326 views
replace() and replaceAll() in Java
The following code uses the replace() method of the String class in Java.
String a = "abc/xyz";
System.out.println(a.replace("/", "\\"));
/ in the given String a is being replaced with \.
The same ...
0
votes
3answers
209 views
How replaceAll method in string works
I need to check the number of different characters in one string whose length can be as long as 20,000 and total test cases of <=10,000. I was doing it by replacing the other characters of the ...
1
vote
3answers
82 views
How to know if this Java's string.replaceAll is executed or not?
if i have some string e.g:
String s = "This is a string";
And now i perform this action:
s = s.replaceAll("This","What");
It works, with s = "What is a string"
fine, but now if the expression ...
2
votes
2answers
51 views
How to delete those punctuation?
public class test {
public static void main(String[] args) {
String a = "so many, punctuations , haha!";
a.replaceAll("[\\p{Punct}]+", "");
System.out.print(a);
}
}
...
1
vote
3answers
95 views
How to use replaceAll() correct
I have a hangman-app which I fetch a random word from Db i created, then I save it to randomedWord and then i make another String for holding randomedWord but replaced with only "_". This hiddenWord ...
0
votes
1answer
150 views
Groovy replaceAll Comma
I'm having issues with the replaceAll feature in Groovy.
I'm working on a CSV parser assignment, and I'm trying to replace commas with spaces. I cannot figure out the syntax to actually replace them, ...
3
votes
9answers
715 views
Replace all “(” and “)” in a string in Java
How to replace all "(" and ")" in a string with a fullstop, in Java? I tried in the following way:
String url = "https://bitbucket.org/neeraj_r/url-shortner)";
url.replaceAll(")", ".");
...
1
vote
2answers
101 views
Issue with regex replaceAll
I'm trying to turn, a/b/c.x.y into abc. However there seems to be an issue with my regular expression, specifically with '\\.*'.
"a/b/c.x".replaceAll( "/|\\.*", "" );
yields:
"abcx"
Any ...
2
votes
1answer
194 views
java regex detect \n
I am trying to delete LaTeX comments in a string:
input string:
\begin{comment}inside \n comment 1 \end{comment} something outside comments \begin{comment} inside comment 2 \end{comment} after ...
0
votes
3answers
1k views
Using replaceAll with Strings containing special characters in Java
Basically, this is what I'm trying to do is this:
String s = "to+go+la";
s.replaceAll("to+go", "");
which should return "+la"
I know that if I were to just replace the + signs, I would use \\+, ...
2
votes
1answer
825 views
DocumentFilter allowing only numbers and period (.) into JTextField?
\Here is the creation of the JTextField:
hourlyWageInput = new JTextField("7.25");
DocumentFilter filter = new UppercaseDocumentFilter();
((AbstractDocument) ...
0
votes
1answer
292 views
Replace all method throws PatternSyntaxException
look at the following code:
String comment = "1)FCR pick up in Hong Kong2)Local charges will be paiy in Hong Kong & in ...
1
vote
6answers
129 views
Cannot to replace a string to another (boolean value) - Java
boolean b1 = false;
boolean b2 = true;
String s = new String(b1+""+b2);
s.replaceAll("false", "f");
s.replaceAll("true", "t");
Nothing is replaced. I still get "false true".
I want to replace all ...
1
vote
2answers
158 views
string.replaceAll java doesn't work with lookaround regex?
I have a json string like this:
string = "{name={first=sam, last=vo}, hobbies={hobby1=football, hobby2=swimming}}"
And I want to remove the "name=" and the "hobbies=", so that I use this pattern: ...
0
votes
2answers
68 views
How to use regex to replace foo(.*) with (foo <what was inside the parenthesis before>)?
Are there mechanisms to replace all, using regex, but keeping what was matched by ".*" ?
If this is not part of regex, but is possible in some editors, please state accordingly.
1
vote
3answers
56 views
javascript - How to do replaceAll?
Hi I have a problem here. I am trying to replace all instances of + character in a string using javascript. What happens is that only the first instance is being changed.
Here is my code:
var ...
0
votes
1answer
289 views
Java in Eclipse, using replaceAll for int int
I'm working on code for a Java project, I currently have replaceAll(String, int) in the code block of public String getDAT(int col, int MULTIPLIER). Eclipse is saying replaceAll is for (String, ...
0
votes
2answers
257 views
s.replaceAll() not working Java/AndroidSDK
Hi there I'm trying to replace part of a (html) string but it's not working. And yes I am setting it to a new variable.
String newsBody = item.htcontent.replaceAll("resolveuid", ...
0
votes
2answers
650 views
Groovy remove multiline comment
How do I remove a multiline comment using groovy?
/* Use groovy replaceAll regex to
remove this comment */
I read-in the above text from a file, to a file object, and then I convert it into a ...
0
votes
1answer
197 views
Java RegEx Replace all to format data from XML
Good afternoon all,
I've noticed they're a few similar problems on here already but non have been of much help to me so far. I am trying to manipulate a String returned by and existing method to ...
0
votes
1answer
159 views
Using regex on XML, avoid greedy match
It looks simple problem , but I'll apprisiate any help here :
I need to swap password value (can be any value) to "****"
The origunal sting is string resived from xml
The problem is that I getting ...
3
votes
3answers
138 views
Why does replaceAll remove the numbers from the String?
String foo = "a3#4#b";
String afterPunctutationRemoval = foo.replaceAll("[,.;:?!'-_\"/()\\{}]", "");
System.out.println(afterPunctutationRemoval);
it gives me "a##b" as a result, can someone explain ...
0
votes
8answers
318 views
Java: replaceAll doesn't work well with backslash?
I'm trying to replace the beginning of a string with backslashes to something else.
For some weird reason the replaceAll function doesn't like backslashes.
String jarPath = ...



