Tagged Questions
The replaceall tag has no wiki summary.
3
votes
3answers
116 views
Java String ReplaceAll method giving illegal repetition error?
I have a string and when I try to run the replaceAll method, I am getting this strange error:
String str = "something { } , op";
str = str.replaceAll("o", "\n"); // it works fine
str = ...
3
votes
5answers
74 views
Change a “\” to a “/”
I'm looking for a simple piece of code that will change all the backslashes in a string to forward slashes using java.
I tried this:
word.replaceAll("\","/");
but it will not work. Anyone have a ...
3
votes
2answers
83 views
Replace a word that is not on a string
I'm trying to replace a word in a file whenever it appears except when it is contained in a string:
So I should replace this in
The test in this line consists in ...
But should not match in :
...
3
votes
5answers
890 views
String replace a Backslash
How can I do a string replace of a back slash.
Input Source String:
sSource = "http://www.example.com\/value";
In the above String I want to replace "\/" with a "/";
Expected ouput after replace:
...
2
votes
2answers
68 views
Regular expression for String.replaceAll
I need a regular expression that can be used with replaceAll method of String class to replace all instance of * with .* except for one that has trailing \
i.e. conversion would be
[any ...
2
votes
3answers
94 views
replacing special chars with .replaceAll
Hello I want to replace the following chars within a string
String a = "20001=EDTS~^20002=USA~^20003=1170871875~^20004=1~^20005=0~^773=~^665=~^453=2~^448=0A";
System.out.println(a);
String x = ...
2
votes
3answers
234 views
Escaping double-slashes with regular expressions in Java
I have this unit test:
public void testDeEscapeResponse() {
final String[] inputs = new String[] {"peque\\\\u0f1o", "peque\\u0f1o"};
final String[] expected = new String[] {"peque\\u0f1o", ...
2
votes
2answers
151 views
java new line replacement
I am wondering about why I don't get the expected result with this one:
String t = "1302248663033 <script language='javascript'>nvieor\ngnroeignrieogi</script>";
t.replaceAll("\n", "");
...
2
votes
3answers
478 views
Replace substring (replaceAll) workaround
I'm trying to replace a substring that contains the char "$". I'd be glad to hear why it didnt works that way, and how it would work.
Thanks,
user_unknown
public class replaceall {
public static ...
2
votes
1answer
202 views
How optimize this regex?
My tool gets a plain text and gradually generates the "tags" by replacing a terms from text in tags. Due to existence of some compound terms, the only way (i think) is use ReplaceAll regex.
Thanks to ...
2
votes
5answers
819 views
Regarding Java String Manipulation
I have the string "MO""RET" gets stored in items[1] array after the split command. After it get's stored I do a replaceall on this string and it replaces all the double quotes.
But I want it to be ...
2
votes
6answers
4k views
String replaceAll() vs. Matcher replaceAll() (Performance differences)
Pretty simple question, but this is coming from a C/C++ person getting into the intricacies of Java.
I understand I can fire up jUnit and a few performance tests of my own to get an answer; but I'm ...
1
vote
2answers
74 views
How can I perform case-insensitive pattern search and case-preserving replacement?
Here is the scenario.
String strText = "ABC abc Abc aBC abC aBc ABc AbC";
// Adding a HTML content to this
String searchText = "abc";
String strFormatted = strText.replaceAll(
"(?i)" + ...
1
vote
2answers
103 views
How to replace characters using Regex
I received string from IBM Mainframe like below (2bytes graphic fonts)
" ...
1
vote
2answers
81 views
Java regex replaceAll not working
regex not working as wanted
Code example:
widgetCSS = "#widgetpuffimg{width:100%;position:relative;display:block;background:url(/images/small-banner/Dog-Activity-BXP135285s.jpg) no-repeat 50% 0; ...
1
vote
2answers
69 views
Android RegEx doesn't find matches
I am trying to use Regular Expressions to decode some HTML I retrieve from a webpage.
I want to transform some <iframe> tags into links.
The code I'm using should be working fine according to ...
1
vote
4answers
109 views
Java String.replaceAll method to sanitize phone numbers
I have databasefield called TelephoneName. In this field, I got different formats of telephone number.
What I need now is to seperate them into countrycode and subscribernumber.
For example, I saw ...
1
vote
1answer
178 views
Java - Possible to Remove all Characters except '.' and numbers for double/floats?
There is a small problem I am trying to solve, it is a part of code that basically checks versions against versions on other machines via version files. It looks at the names of these files, and ...
1
vote
8answers
138 views
JAVA: replaceAll reg pattern
Considering the following string:
String s = "/static/201105-3805-somerandom/images/optional-folder/filename.gif";
How can I remove the "static/201105-3805-somerandom/" part?
The ...
1
vote
2answers
163 views
text.replaceAll(“(?i)(” + query + “)”, “<b>$1</b>”) with GWT
I would like to use replaceAll with GWT more specifically:
doSomeGWTStuffWithTheString(text.replaceAll("(?i)(" + query + ")", "<b>$1</b>"));
But for some reason it does not run. I ...
1
vote
4answers
603 views
Why does this Java String.replaceAll() code not work?
I have used string.replaceAll() in Java before with no trouble, but I am stumped on this one. I thought it would simply just work since there are no "/" or "$" characters. Here is what I am trying to ...
1
vote
3answers
1k views
How the Java equivalent to this preg_replace?
<?php
$str = "word <a href=\"word\">word</word>word word";
$str = preg_replace("/word(?!([^<]+)?>)/i","repl",$str);
echo $str;
# repl <word ...
1
vote
2answers
218 views
Java replaceAll with regular expression
I have a text like this:
...<span>my name is bob and I live in </p><p>America</span>...
I would replace this text in
...<span>my name is bob and I live in ...
1
vote
5answers
3k views
replace \n and \r\n with <br /> in java
This has been asked several times for several languages but I can't get it to work.
I have a string like this
String str = "This is a string.\nThis is a long string.";
And I'm trying to replace the ...
1
vote
3answers
1k views
groovy: how to replaceAll ')' with ' '
i tried this:
def str1="good stuff 1)"
def str2 = str1.replaceAll('\)',' ')
but i got this:
Exception org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed, ...
1
vote
2answers
856 views
Java: str.replaceAll() not working
I'm trying to cleanse one String from another.
before = before.replaceAll(Constants.GENE_START_SEQUENCE, "");
And yet, the following assertion sometimes fails:
assert ...
0
votes
1answer
55 views
string.replaceAll cutting characters 50% of the time
I'm trying to use a series of string.replaceAlls to swap all the UTF-8 special characters in a text file with ASCII & HTML encoding. Along the way I've hit a particularly stubborn one: \uAC8B, the ...
0
votes
2answers
53 views
Strange Behaviour of replaceAll method of String
I am facing strange behaviour of replaceAll method of String class.
I have a string buffer which contain below data
...
0
votes
2answers
90 views
How to replace a substring within double parentheses in Java?
I need to replace a substring within double parentheses with an empty one. I use:
source = source.replaceAll("\(.+?\)", "");
The substrings within single parentheses are removed. Instead, when I ...
0
votes
2answers
142 views
How to remove the degrees celsius symbol from a string (java)
I've been trying to remove the degree Celsius symbol from the following string for a few hours now. I've looked at prior posts and I see that /u2103 is the unicode representation for it. Despite ...
0
votes
2answers
76 views
replaceAll and beginning of line (java)
I would like to use String's replaceAll function to delete any char that is not in a given set. I tried
x = x.replaceAll("^[A-Za-z]", "");
However this is not working because when placed at the ...
0
votes
2answers
109 views
Input Sanitizing to not break JSON syntax
So, in a nutshell I'm trying to create a regex that I can use in a java program that is about to submit a JSON object to my php server.
myString.replaceAll(myRegexString,"");
My question is that I ...
0
votes
2answers
149 views
Java: Understanding the String replaceAll() method
I'm looking to figure out the answer to this problem here.
First off,
blah[abc] = blah[abc].replaceAll("(.*) (.*)", "$2, $1");
Can someone explain to me what the (.*), $2 and $1 are?
Secondly, ...
0
votes
2answers
335 views
Java logic code - Delete some text from a String
I want to remove any occurence of "is happy" sentence from a very large text ignoring case sensitivity. Here are some of that large text sentences :
"She is happy. I like that."
"His happy son"
"He ...
0
votes
1answer
374 views
Java ReplaceAll Problem
I am writing a program to solve postfix problems. I am not needing help with the algorithm as I already know it. But I have stumbled across a problem with the replace all function
In this program we ...
0
votes
2answers
362 views
java String.replaceAll regex question
I have a string that contains the following text
String my_string = "hello world. it's cold out brrrrrr! br br";
I'd like to replace each isolated br with <br />
The issue is that I'd like ...
0
votes
1answer
1k views
using java regex how can I replace all when pattern contains left parenthesis
I have a string that looks like this:
"mynum(1234) and mynum( 123) and mynum ( 12345 ) and lastly mynum(#123)"
I want to insert a "#" in front of the numbers in parenthesis so I have:
...
-1
votes
1answer
111 views
Rearrange words in java
I am trying to do a word replace tool to reduce google translate gibberish.
What i need to do right now is:
i have a String like : lalala text lalatxt.
and i need to convert it to look like : lalala ...