Tagged Questions
-1
votes
4answers
34 views
PHP transform a text to meta keywords
I want to transform a given text like
"Lorem ipsum dolor sit amet, consectetur adipiscing elit! Nam suscipit
| Auctor pellentesque."
to meta keywords in a page. For that I need to arrange the ...
0
votes
2answers
23 views
Replacing characters at specific positions in strings in Oracle
I'm trying to write a function that can decode a message by switching pairs of characters around.
Say I have the message hello! which, when encoded, turns into ehll!o.
Is there an existing function ...
0
votes
3answers
43 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 ...
2
votes
1answer
83 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 ...
2
votes
2answers
27 views
Vba how to compare 2 column
I'm making an heuristic analyse and i have the fallowing problem : I want to find in column D numbers that match with column J and replace them by a "0". You can see what I'm trying to do on this ...
0
votes
1answer
53 views
Replace all spaces in a string with '%20'. Assume that the string has sufficient space at the end of the string to hold the additional characters [closed]
The question is as the titles, and I have write a code to implement this function. The code is as below, but the sentence: *(str+length_copy-1+tail_space_num) = *(str+length_copy-1); cause an error.
...
0
votes
1answer
33 views
Replace particular characters in the string at the same moment
var str = 'Hello World'
var replacements = {0: '4', 6: '77'};
magicalReplace(str, replacements);
// result: 4ello 77orld
Can you help me write that function which would help solve the problem?
The ...
2
votes
3answers
40 views
Removing a Ton of Leading Spaces and Newline Characters from a String
I have a Python string that is printing out the following string in the shell:
'\\n autonomy\\n . . sweeping\\n \\n '
How can I remove all of ...
0
votes
0answers
39 views
how to replace a group of character in a string
I have a string variable "full". also I have a string array which has 40 cells. Each cell has a group of character like "x1" or "x1'". I want to search all of this cells in the "full" string and when ...
-1
votes
5answers
46 views
Replace substring not working
I am working in asp.net mvc. want to replace \ character to / character. But it is not working.
Let
string path="D:\Qamar\Cartoons\Image.jpg";
path=path.Replace("\","/");
I get error in second ...
0
votes
2answers
38 views
Replace characters in a string with whitespaces
I am writing a simple Python script that retrieves the latest tweet of any twitter user (in this case BBC) and uses the integrated text-to-speech system on Mac to read out the content of 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 ...
1
vote
1answer
35 views
How to replace instances of a char by ints, then access an array with them
I'm trying to call this function on a string and pass in a 3d char array.
The function should replace all instances of 'u' in the word with '0', 'c' with '1,' etc...
Then I want it to reference the ...
0
votes
4answers
60 views
Replace string spaces with an underscore
I need to replace some spaces with an underscore (i.e. "PM HD PSP" > "PM_HD_PSP")
Here's what I've tried so far:
private string NombreExcel3(string excel)
{
MessageBox.Show(excel);
...
1
vote
3answers
90 views
How to replace “ ” " with space
I am trying to replace double quotes with space but it's not working, says syntax error,
"'asd"asd', 'asdasda"sdsa'" // This is the string pattern I am getting "somehow"
string b = a.Replace(""", ...
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 ...
0
votes
2answers
48 views
Replace SOH character in string
I am reading a small MSWord document and storing its contents in a string.
There are SOH special characters included in this string. I would like to replace them with a placeholder string, like ...
0
votes
1answer
88 views
How to replace “\\” to “\” with String.Replace() [closed]
I want to replace "\\" with "\" (two to just one).
I'm using:
string myPath = Path.GetFullPath(fileName);
string correctPath = myPath.Replace(@"\\", @"\");
But nothing happens, the string in ...
0
votes
2answers
47 views
Replacing substrings given a dictionary of strings-to-be-replaced as keys and replacements as values. Python
I have a dictionary with the strings to be replaced as keys and its replacement as values. Other than looking through the strings token by token, is there a better/faster way of doing the replacement?
...
0
votes
0answers
46 views
Str_replace not working with Php Curl
I used curl to grab a page with a form. It looks like <form action="send.php" method="post"> I want to replace send.php to index.php?act=send. The code I used was
$store = curl_exec();
$store = ...
0
votes
0answers
26 views
Applescript error while trying to move files with hazel to custom folders
So,I have an applescript (bellow) wich is used to clean the name of a tv show episode, and move the episode to its right folder based on that. I use hazel to activate the script with the right file. ...
0
votes
1answer
48 views
Applescript error while trying to move files with hazel
So,I have an applescript (bellow) wich is used to clean the name of a tv show episode, and move the episode to its right folder based on that. I use hazel to activate the script with the right file. ...
3
votes
4answers
55 views
Issue with replacing word
I try to replace word based on word. This is what I tried:
<?php
$reject = "dan n bb galeri";
$rejectarray=explode(" ",$reject);
$text = "saya dan kamu ganti pin bb";
echo ...
0
votes
2answers
33 views
JavaScript - remove space after a specific char
I've found many solutions in JavaScript to remove all spaces in a string with \s. But I can't found a solution for my specific problem. I want to transform "2* 2 +3* 5" in "2*2+3*5" (no more space ...
1
vote
1answer
49 views
Remove string with known start and end string c#
I have a HTML page string and I want to remove some string from the beginning of the HTML page. The code that I want to remove can be
<!DOCTYPE HTML>
or
<!DOCTYPE anything in between>
...
0
votes
0answers
70 views
Weird behaviour for String.substring(5).replace(“”, “”) // empty string [duplicate]
Note: i am having this problem on my Android project, in Eclipse.
Here is my code:
String str = "just_a_string";
System.out.println("]" + str + "[");
System.out.println("]" + ...
1
vote
3answers
69 views
How to remove a specified string from a string
Ok so I'm trying to create a method that takes 2 strings, the second string argument is the string to be removed from the first string argument. I can't figure out what's wrong with my code? Any help? ...
1
vote
2answers
45 views
at a specific startindex check for space if any is found remove that specific space the text after it and add “…”
I have a bunch of title texts that get generated they all have different .Length but at a specific startindex of the string I want to find the closest space and then remove the text after it and also ...
-2
votes
1answer
62 views
How do I use the replace function on input in javascript [closed]
I have this code so far
<!DOCTYPE html>
<html>
<body>
<p>Convert Link</p>
<p id="youTube">http://www.youtube.com/watch?v=6eo5RDBLbVU</p>
<button ...
0
votes
2answers
58 views
In Java, how to replace a symbol occurring in multiple places in the string by another symbol at all instances?
I have written a method to replace the first instance of the given symbol by another symbol in a given string.
I would like to modify this method so that it will replace all instances of the old ...
1
vote
1answer
60 views
C# simple html editor - how to search and replace content
Today i'm working on simple html editor in visual c#.
My goal is to open pure html file from local drive (Opendialog load into string or load into webbrowser completed) and allow to edit key ...
1
vote
0answers
44 views
Oracle SQL: Find {tags} in a sql string
I have SQL strings that my users write. They look like:
SELECT Name, Age from Users WHERE Name LIKE '%a%' AND {UsersWhere}
On the oracle server side when such an SQL is to be executed I want to ...
0
votes
5answers
25 views
Remove sections of url to only keep file name
I want to remove everything in the URL and only keep the name of the file/image. The URL is a dynamic input/variable.
Code:
var str = "http://website.com/sudir/sudir/subdir/Image_01.jpg";
str = ...
2
votes
4answers
54 views
String.replace “\\” with “/”
There seem to be a lot of questions around this but none of the ones I found seemed to work for me.
My code:
string subFolderName = category = "Parent/Sub\\Sub sub";
string category = ...
4
votes
2answers
101 views
Replacing strings with strings from a list
I am trying to write a function that takes a list of searchwords, a list of replacementwords and a string on which those will be used.
listReplace :: [String] -> [String] -> String -> ...
1
vote
3answers
48 views
Search and replace a string as shown below
I am reading a file say x.c and I have to find for the string "shared". Once the string like that has been found, the following has to be done.
Example:
shared(x,n)
Output has to be
*var = ...
1
vote
2answers
93 views
Avoid recursive replacement on a string
Assume there is a string:
"I'm a boy."
and some synonyms words (in key-value format):
boy -> "male yong"
yong -> "age under 18"
If I replace the string by synonyms words one by one, it ...
-4
votes
1answer
89 views
Python replace string in file
i need something to replace a string in a file wich is placed in that mktemp folder. this file is named autounattend.cfg and contains a string named %PASSWORD this string need to be replaced with ...
0
votes
2answers
126 views
How to replace more than one element at the same time in a String (Haskell)
i want to take 2 lists for example like this;
find=["Hou","House","Mouse"]
repl=["Mou","Bird","House"]
So when i give a text like that;
"The House with Mouse is big"
Output should be this;
"The ...
0
votes
1answer
66 views
Fill in the blank
I'm having a problem replacing my String.
This is the Question class method.
public class Question
{
private String text;
private String answer;
/**
Constructs a question with empty question and ...
1
vote
1answer
39 views
str_replace string in a file.txt with another file.txt
I want to replace some string in searchword.txt file with replaceword.txt file, but with my php code it can only replace the first two strings, i want to replace all the strings in the file.
here is ...
-4
votes
0answers
28 views
Search and replace a string as shown in the post
I am reading a file say x.c and I have to find for the string "shared". Once the string like that has been found, the following has to be done.
Example:
shared(x,n)
Output has to be
*var = ...
-3
votes
3answers
73 views
Replace HTML entities between divs and only between divs
Given the following string:
asd <div> def foo </div> ghi <div> moo </div>
I want to remove all of the 's ...
-4
votes
0answers
59 views
(SOLVED) Converting ArrayList<String> to String in Java [closed]
I have most of the process done, but when it outputs the end string, it adds a null value to the front of the string. Why does it do this and how can I get rid of that null value?
Code is below.
...
4
votes
6answers
117 views
String.Replace working in VB but not C#
The following VB code works correctly and does not flag up any errors.
strLine = strLine.Replace(strLine.LastIndexOf(","), "")
However the same C# code doesn't:
strLine = ...
0
votes
0answers
43 views
Python alter lines for all files in folder, replacing existing files
I am trying to write a python script which goes through all files in a folder, and alters those lines containing a certain a href. I'm trying to get the script to add a .html extension to the href, ...
-1
votes
7answers
63 views
Fetching Long Value From String [closed]
Thanks for Your Valuable time. I need to explode my string and fetch only digit before Kr. (In Java)
Example String str = "Delhi 205 Kr."
From above I need only 205 as substring.
Another ...
1
vote
1answer
28 views
Javascript regex replace next match
Many questions you might think are related will say something like "use /g". That's not what I'm after. There must be a way to do this. What I have is the following:
<script>
var myString = ...
6
votes
3answers
89 views
Simultaneous .replace functionality
I have already converted user input of DNA code (A,T,G,C) into RNA code(A,U,G,C). This was fairly easy
RNA_Code=DNA_Code.replace('T','U')
Now the next thing I need to do is convert the RNA_Code ...
2
votes
1answer
80 views
ASP.Net's String.Replace behaves differently if run on Windows 7 workstation than on Windows 2008 R2 server
I have an ASP.Net project using .Net framework 4.0. The following line works fine if my project is published to my Windows 7 workstation:
strTemplate = strTemplate.Replace("<span ...


