Tagged Questions
1
vote
3answers
107 views
Vim: How to delete repetition in a line
I am having a log file for analysis, in that few of the line will have repetition of it own, but not complete repetition, say
Alex is here and Alex is here and we went out
We bothWe both went out
I ...
1
vote
3answers
57 views
Matching a number from a table in regex
Don't mind the weird encoding.
Is there a way (in a table like this, which starts with OF DAMAGE STABILITY) and ends with the "Flooding percentage" line, to match only numbers from the last column ...
0
votes
2answers
57 views
How to find and replace upper and lowercase and keep capitalization in Vim
Let's say I have:
foo and Foo
How can I find and replace it to
bar and Bar
With one regex/find and replace command in Vim? By default I have my Vim setup to find either uppercase and lowercase ...
0
votes
0answers
63 views
Append string before the last word of each line [closed]
word1 word2 word3 4word word_5
word6 word7 word8 word9 word10
would like to have
word1 word2 word3 4word string word_5
word6 word7 word8 word9 string word10
It would be preferable if the 'word' ...
2
votes
4answers
123 views
how to do vi search and replace within a range in sublime text
I enabled vintage mode on sublime text.. but there are some important vim commands that are lacking.. so let's say I want to do a search and replace like so
:10,25s/searchedText/toReplaceText/gc
...
0
votes
2answers
44 views
Unix pattern matching using vim
Dealing with random files, which has patterns like
Jon Smith-db/his-wife.db/his-keeds.db
Jon Smith-db/his-wife.db/his-siblings/his-k1ds.db
....
....
I need to replace last string his-keeds.db and ...
2
votes
4answers
86 views
How to delete all lines matching a pattern and a line after in Vim?
There's a text
Title of the text
This line contains a word that is matched by the pattern and it should be deleted.
Next line is supposed to be deleted as well.
Loren ipsum dolorem...
This line ...
4
votes
2answers
105 views
Vim highlight regex
I have a syntax highlight for cpp to highlight STL algorithms, one line is
syn keywork cppSTL find
My problem is that on a project that I am working, there are a number of classes with a method ...
5
votes
4answers
47 views
searching and replace without consuming what you are searching for
Say I have lines like this:
'alpha' 123
'beta' 678
'alpha' 998
'gamma' 212
And using the search & replace regex in VIM, turn it into this:
'alpha' 123 : alpha
'beta' 678 : beta
'alpha' 998 : ...
1
vote
5answers
166 views
vim: remove the first character of each line and append
I am new to vim. I have a data file as follows --
1,14.23,1.71,2.43,15.6,127,2.8,3.06,.28,2.29,5.64,1.04,3.92,1065
1,13.2,1.78,2.14,11.2,100,2.65,2.76,.26,1.28,4.38,1.05,3.4,1050
...
0
votes
1answer
40 views
Regexp in Vim Not working as expected
Why is the following regex
/\d{2, 4}/
which I expect to identify all between 2 and 4 digits in a text not working when I run it on the following text
1234567890
in vim.
0
votes
2answers
35 views
Deleting tables with regular expressions
Not really a specific question, since I don't know enough - more of a question on how to approach this.
Example file can be seen below:
LOADING CONDITION : 4-Homogenous cargo 98% 1.018t/m3, ...
0
votes
1answer
45 views
Regex for search and replace in vim
I have a file which has multiple entries like this:
Abcd:abcd:*sometext*:klm:xyz/abc
Abcd:abcd:R%fs90uw:klm:xyz/abc
Now, I want to replace "klm" with "qrs" for only those lines which have the ...
0
votes
1answer
43 views
How to extend block with one character and return to initial block after search?
I'm trying to do a search within a visual block, (from a vimscript).
This is my code:
aaaaaaaaaaaa
a26 text tea
atext text a
atext 27 12a
a11 text 25a
aaaaaaaaaaaa
Let say my block selection is ...
0
votes
3answers
53 views
Searching for pattern that does not start with alphanumeric character
I want search for a pattern in vim that does not start with alphanumeric character. This means a pattern that starts with space and start of new line as well.
If {pattern} = noremap
I tried to search ...
1
vote
2answers
58 views
How to increase or decrease numbers in a visual block on the fly?
I often find myself adding numbers on the fly to a list of numbers.
p.e.
38
12 x
215 x
98 x
03 x
23
What I want to do is to select a visual block of numbers (x in the above ...
0
votes
3answers
63 views
Multiline regex pattern to delete blank lines
/* Comments for code... */
if (...) {
}
I need to delete the blank line between the comment and the if:
/* Comments for code... */
if (...) {
}
I am currently using the following regex:
...
0
votes
2answers
50 views
Regex (search/replace/add) VIM
I am trying to search and replace in my file.
example:
[{"pk": 1, "model": "blog.post", "fields": {"text": "asdadasdasd", "genre": 8,
"image": "image/test.jpg", "created_at": ...
2
votes
2answers
66 views
Align: How to trim spaces from block selection to start of text?
I often find myself left aligning text within other text.
I know there are plugins to align columns but within a lot of other text it is not the easiest way.
This is my text:
>...this is text ...
0
votes
1answer
41 views
How to highlight all matches using a backreference?
I have this:
/\(\d\{4}_\d\{2}_\d\{2}\).*\1
to find double dates in the same line.
I would like to highlight (as in a normal search) all matches found (not only the first one as in above regex).
...
0
votes
1answer
27 views
Escaping in nested substitute() command results in ^@ characters in 7.2
I've got a document:
"""I'm a multiline string.
I say
"hey, single line string",
and it says
"\they, multiline string,\nI can do multiple lines\ntoo".
and I say,
"it's cute that you think ...
0
votes
1answer
46 views
My Vim replace with a regex is throwing a `E488: Trailing characters`
I'm trying to find all instances of a Twitter handle, and wrap an anchor tag around them.
:%s/\(@[\w]\)/<a href="http://www.twitter.com/\1">\1<\/a>/gc
Which gives me:
E488: Trailing ...
0
votes
2answers
40 views
How to check if there are doubles in the same line?
I have a text file with many lines like this:
IMG_0106.JPG y:\2004_05_23_bern basel\ 2004_05_23
IMG_0107.JPG y:\2004_05_23_dortmund\ 2004_05_23
IMG_0108.JPG ...
1
vote
2answers
34 views
vimrc to detect remote connection
At the moment I have to hard code the names of servers on my vimrc in order to either make it different on the remote machine. This is done by conditional statement using hostname() function in vim. I ...
2
votes
3answers
68 views
What is the correct VIM regexp to search to get = but not ==?
In the following code:
a = b = c == 1
I'd like to match on only the first two =, but not the == at the end.
I figured the pattern \<=\> would work since \< matches beginning of word and ...
0
votes
2answers
52 views
How to change the output message of a search?
I would like to change the output message when a search is done.
p.e. when I do a search with a very long regex and nothing has been found vim returns the message E486: Pattern not found: .... very ...
-2
votes
1answer
43 views
non-word characters vim
I am attempting to use vim's regex engine to syntax highlight @ without any word characters adjacent to it, such as like this:
The @ matches
The@does not match.
I am either matching ALL @s or I ...
2
votes
1answer
74 views
vim find and replace over multiple lines, excluding more than a character
I would like to find structures of the type
\be
something
\ee
in my LaTeX file and replace them with
\begin{comment}
\be
something
\ee
\end{comment}
. The most similar thing I could come up ...
0
votes
3answers
45 views
Regex For HTML Search and Replace
I'm doing a simple search and replace command in vim and I'm trying to escape the <> and / characters so I can use them in my search expression. I realize there are more elegant ways of finding ...
2
votes
1answer
50 views
Vim regex: why backslash before + and not before *
Is there any particular reason why in vim search patterns "1 or more" is \+ (with backslash) and "zero or more" is * (without backslash)?
0
votes
2answers
82 views
Vi Editor : Insert Line feed above a pattern with same count of white spaces
if (BT_IS_SUCCESS(xCode))
{
xCode = xCatResMgrInstance->allocateResourceId (CfaToCpss.u4CpssPortNo,
Switch_Hal_Service_Types::RESOURCE_PORT,
...
3
votes
2answers
115 views
Match end of line (EOL) with syntax match in vim
When I hit / in vim and search for $ it highlights all eols. But when I try to match them with syntax match it does not seem to work.
function! ConcealNonText()
set conceallevel=1
set ...
3
votes
2answers
51 views
Match the last element in a delimited list?
I have some data that is separated by colons, like this:
foo:bar:baz:qux
I want to use regex to match the last element, in this case, qux. The list may be of any length, and if it is one element ...
1
vote
1answer
22 views
How can I combine matching rules in vim into one?
I have a log file in which I have DEBUG, NORMAL and CRITICAL entries as well as some info that does not start with a regular (for this type of logs) data e.g. [20130313:123412]
[210313:100114] ...
1
vote
2answers
85 views
How to replace “=” with “_” in Vim using regular expressions?
Can you advise me a regexp to replace - to _ in my HTML file but focus on href and src attributes only (I don't need to make any changes to contents of my Web page).
For instance:
Before:
<a ...
0
votes
1answer
49 views
HOW to use vim to find string with underscore
I want to replace a string IP_HD_LEN using
:s/IP_HD_LEN/IP_HDR_LEN
in vim
however, I got
E486: Pattern not found: IP_HD_LEN
what is wrong with this?
0
votes
1answer
55 views
sed replace html
Having difficulty getting a sed search and replace working with an html file.
I have multiple sections that look like this:
<TABLE class="cattable">
<TBODY>
<TR>
...
0
votes
1answer
33 views
vim syntax checking whitespace
I want configuring my .vimrc for do somes auto syntax checking.
That is my problem, i want auto change somes syntax by another.
I deal with the specific caracter in computer programation like = ; , . ...
1
vote
1answer
66 views
Vim regular expression for range of numbers - Not working
I have the following regular expression for range 288-303 but it is not working in GVim.
The regexp is :/28[89]|29[0-9]|30[0-3]/.
Could anyone please point out the reason. I referred Stack Overflow ...
0
votes
2answers
60 views
Regex search and replace with grouping
I have a file with hundreds of lines looking like the ones below. My regex skills were not enough to get the job done.
I'm trying to do this replace in Notepad++ with the search and replace using ...
1
vote
3answers
80 views
Regex to search a multi-line field in a text file
I have a text file of logs. In it I am interested in searching a field using some regular expression (I use notepad++ on Win, but even use vim on Ubuntu to parse/read this log text file so either one ...
1
vote
2answers
74 views
How can I set Vim up to search for and sort all lines containing a certain string?
I am using vim to manage a to-do list, and would like to set a hotkey to do the following:
Find all lines which contain the word under the cursor. The world is always a tag formatted as: #mytaghere
...
1
vote
3answers
88 views
Vim match all characters except at start of string
I'm using the vim substitute function in a vim script, and I want to substitute all characters after the first initial brackets. For example, say I have a string that looks like this:
]]]] foo ] bar ...
0
votes
2answers
72 views
Vim: Delete all text surrounded by a start and an end
Say I've got this:
\item[1]\footnote{«footnote blah blah»}
footnote blah blah.
\item[2]\footnote{«blah blah footnote»}
random text
\item[3]\footnote{«this is not»}
more random text
I ...
1
vote
4answers
38 views
Replace trailing {
I have a text
int strlindex(char s[], char t[]) {
that I would like to change into
int strlindex(char s[], char t[]);
using Vim. I've tried
%s/\{$/;/g
but to no avail. Any ideas?
1
vote
2answers
89 views
vim regex for “abcd”, where “bc” is optional?
I want to search for occurrences of ad and abcd where the bc is optional. How can I do that? i.e.,
+-------+----------+
| ad | MATCH |
| abcd | MATCH |
| abd | NO match |
| abbd | NO ...
1
vote
2answers
91 views
Vim: remove matching braces and the first word in the braces
For example, change
text 12345 {\color{red}text 123 \ref{label} 567
1234} 567
to
text 12345 text 123 \ref{label} 567
1234 567
What kind of operation should be done in vim?
I ...
1
vote
2answers
78 views
Vim, swapping words with accented characters
I'm trying to use the following mappings to swap words in Vim:
" Swap current word with previous one (push word to the left)
nnoremap <silent> <A-h> ...
4
votes
2answers
192 views
A regular expression mystery
I am investigating a regexp mystery. I am tired so I may be missing
something obvious - but I can't see any reason for this.
In the examples below, I use perl - but I first saw this in VIM,
so I am ...
2
votes
3answers
68 views
Replace a*b**N by a*pow(b,N)
I have an awful large expression that expresses the power in terms of the ** operator and need to convert it to code that uses the pow function. That is, I look for a regular expression for finding ...
