8
votes
1answer
64 views

Non-greedy string regular expression matching

I'm pretty sure I'm missing something obvious here, but I cannot make R to use non-greedy regular expressions: > library(stringr) > str_match('xxx aaaab yyy', "a.*?b") ...
1
vote
2answers
30 views

glob2rx in R to get all cells whose last decimal is 5?

I have a matrix that looks lke this: wun2 308.0 111.0 72.0 64.0 wupA 8177.0 3933.0 2235.0 2057.0 wus ...
2
votes
2answers
62 views

Return original search terms for grep in R

I have a list of items and a list of search terms, and I am trying to do two things: Search through the items for matches to any of the search terms, and return true iff a match is found. For all ...
5
votes
4answers
74 views

Separate strings into groups of 2 characters separated by colon (1330 to 13:30) in R

How do I turn "1330" into "13:30", or "133000" into "13:30:00"? Essentially, I want to insert a colon between every pair of numbers. I'm trying to convert characters into times. It seems like there ...
-2
votes
0answers
61 views

how to extra numeric data from string in R [duplicate]

I have some data contains numeric and strings, for example: N 卤 D锟÷\xa8002098锟\xa1, and I want to extra 8002098 from it, it seems that the function grep and str_extract would be help, but I am not ...
2
votes
1answer
53 views

Multiple regexpr in one string in R

So I have a really long string and I want to work with multiple matches. I can only seem to get the first position of the first match using regexpr. How can I get multiple positions (more matches) ...
8
votes
2answers
86 views

when [:punct:] is too much [duplicate]

I'm cleaning text strings in R. I want to remove all the punctuation except apostrophes and hyphens. This means I can't use the [:punct:] character class (unless there's a way of saying [:punct:] but ...
3
votes
1answer
77 views

Regex issue in R with gsub - reformat string vector to numeric

I am trying to take a character vector of dollar values that is poorly formatted and turn it into a numeric. The values are formatted as in the following vector, with a leading and trailing space, a ...
3
votes
2answers
59 views

Regular expression in R

I am having some troubles with the regular expression in R. I use str_extract from the library stringr and my problem is : library(stringr) test="word1 something word2 something word3 something ...
-4
votes
0answers
62 views

regular expression in R (need equivalent from Python) [closed]

I am pretty new with R and I couldn't find a lot of information about Regular Expression. Basically I have a web page and I would like to extract some information from it. In python the command line ...
0
votes
3answers
72 views

regex to replace words with more than two consecutive characters

How can I detect the presence of more than two consecutive characters in a word and remove that word? I seem to be able to do it like this: # example data mystring <- c(1, 2, 3, "toot", ...
3
votes
2answers
58 views

Split string into substrings on one or more whitespaces

I want to split a string into several substrings at those positions where one or more whitespaces (tab, space,...) occur. In the documentation of strsplit() it says, that split is interpreted as a ...
7
votes
3answers
98 views

dynamic regex in R

The below code works so long as before and after strings have no characters that are special to a regex: before <- 'Name of your Manager (note "self" if you are the Manager)' #parentheses cause ...
3
votes
2answers
81 views

Extract all words between two specific words in a character vector

Is there a more efficient method? How can I do this without stringr? txt <- "I want to extract the words between this and that, this goes with that, this is a long way from that" library(stringr) ...
1
vote
2answers
64 views

Possible to change the record delimiter in R?

Is it possible to manipulate the record/observation/row delimiter when reading in data (i.e. read.table) from a text file? It's straightforward to adjust the field delimiter using sep="", but I ...
1
vote
1answer
42 views

use regex in R to parse a string

I have a string like this: vmstat_webserver01.20130102 I need to use regex to pick the value between "_" and "." I tried this: grep("(_.*)+.", name, value=TRUE) did not work any pointers?
-2
votes
3answers
58 views

parsing out text and non number characters from the data frame

I have this data frame. I would like to have only numbers in the data frame. Clean it out so that no text, no %, and no -. I tried using gsub but when I use sub it converts my data frame to character ...
1
vote
4answers
53 views

Parsing out a line in R to pick different objects

I have this line: system<-c("System configuration: type=Shared mode=Uncapped smt=4 lcpu=96 mem=393216MB psize=64 ent=16.00") I need to parse out this and pick smt, lcpu, mem, mpsize and ent into ...
0
votes
1answer
43 views

Matching complex URLs within text blocks (R)

I want to use the Regex by John Gruber (http://daringfireball.net/2010/07/improved_regex_for_matching_urls) to match complex URLs in text blocks. The Regex is quite complex (as is the task, see regex ...
1
vote
3answers
53 views

Replace URL with domain (R) [duplicate]

I want to replace a URL in a string ("Hello world http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example") by its domain ("Hello world stackoverflow.com"). So far I was ...
5
votes
2answers
122 views

Replace string unless between two points

I have the regex need to replace all backslashes \\ with \" unless the \\ is between two dollar signs $\\bar{x}$. I don't know how to say in regex replace all these unless it falls between these two ...
0
votes
2answers
68 views

How to remove hyperlinks, email ids, etc from a text document using regex?

I have some text documents which contains: Different types of emails addresses: I mean public domain such as gmail, yahoo, etc and private emails as well such as abc@mycompany.org... Different ...
6
votes
5answers
89 views

regex grab from beginning to n occurrence of character

I'm really putting time into learning regex and I'm playing with different toy scenarios. One setup I can't get to work is to grab from the beginning of a string to n occurrence of a character where ...
2
votes
3answers
58 views

regex from first character to the end of the string

In a related post someone asked how to grab from beginning of string to first occurrence of a character. I'd like to extend my own knowledge of regex by asking how to grab from a certain character of ...
2
votes
2answers
56 views

Selective regex on a word/character

I'd like to replace all the cases of the word Date in a string unless it is Date() (that is Date followed by parenthesis). Here's an example of a string and what I tried at first: x <- ...
1
vote
3answers
92 views

R: gsub and capture

I am trying to extract the contents between square brackets from a string: eq <- "(5) h[m] + nadh[m] + q10[m] --> (4) h[c] + nad[m] + q10h2[m]" I can filter them out: gsub("\\[.+?\\]","" ...
3
votes
4answers
85 views

How to convert a vector of strings to Title Case [duplicate]

I have a vector of strings in lower case. I'd like to change them to title case, meaning the first letter of every word would be capitalized. I've managed to do it with a double loop, but I'm hoping ...
3
votes
4answers
101 views

capture IP addresses only using R

I have R objects that have domain names and IP addresses in them. For example. 11.22.44.55.test.url.com.localhost I used regex in R to capture the IP addresses. My problem is that when there is no ...
0
votes
1answer
73 views

Using regexpr in R with multiple strings affirmation and negation

I am grepping at a column of notes. Looking for the presence of some strings and the absence of others. The expression looks like toMatch <- c("words", "i", "want", "to") notToMatch <- c("not", ...
0
votes
4answers
79 views

Is possible use a foreach loop of Perl to process different files with R?

im tried to process different files like an input to R script, for this I use a foreach loop in Perl, but R send me a warning: Problem while running this R command: a <- ...
1
vote
3answers
47 views

Specify the number of characters to be matched using a variable

I am using the following expression to extract part of a string: part <- sub("(^[a-zA-Z]{2}).*$", "\\1", "My String", perl = T) which yields "My" The problem is that I want to use a variable ...
0
votes
1answer
55 views

Extracting text in R

I am trying to extract a variable-length substring of text using R. I have several characters such as the following: "\"/Users/Nel/Documents/Project/Data/dataset.csv\"" I need to extract the file ...
3
votes
3answers
110 views

Remove the end of a URL string in R

I am trying to clean and remove the directories from a list of URLs in R What I have: http://domain.com/123 http://www.sub.domain1.com/222 http://www.domain2.com/1233/abc What I want: domain.com ...
9
votes
3answers
143 views

Why does strsplit use positive lookahead and lookbehind assertion matches differently?

Common sense and a sanity-check using gregexpr() indicate that the look-behind and look-ahead assertions below should each match at exactly one location in testString: testString <- "text XX text" ...
3
votes
4answers
94 views

split string with regex

I'm looking to split a string of a generic form, where the square brackets denote the "sections" of the string. Ex: x <- "[a] + [bc] + 1" And return a character vector that looks like: "[a]" " ...
1
vote
1answer
61 views

Convert string of accounting data into integers (positive and negative)

I have a data formatted in the "accounting" style from Excel that look like ($317.40) or $13,645.48. As a regexp newbie, I'm looking for a more efficient way of removing all useless symbols and ...
5
votes
4answers
76 views

Split column by last word in sentence

YARQ (Yet another regex question). How would I go about splitting the following into two columns, making sure that the last column contains the last word in the sentence and the first column ...
1
vote
2answers
63 views

grep in R with multiple numerical or defined variables

Example Data A<-c(1,4,5,6) B<-c(4,6,7,8) C<-c(6,9,1,2) D<-c(5,6,7,3) E<-c(10,11,12,19) DF<-data.frame(A,B,C,D,E) colnames(DF)<-c("A_1","B_1","C_2","D_2","TEST") One<-1 ...
1
vote
3answers
72 views

Regular expressions in R: pattern repetitions with {}

I am having trouble with a regular expression in R. The goal is to parse a Markdown/reST/knitr report text file in R to remove my own custom comments. These comments are put in the following form: ...
2
votes
1answer
54 views

Inserting line breaks in long strings

I'm writing a function to write automacilly tables in tex format. One problem I'm having is with tables with long strings. To solve this, I created a function that break long strings in more rows. My ...
-3
votes
3answers
85 views

Condensing factors using grep while excluding certain results [closed]

In R, I am attempting to condense a factorized column into smaller subsets so I can later reference these subsets in one shot. There are many instances where the naming of these factors needs to be ...
1
vote
3answers
113 views

extract string through first colon

I have a data set of strings and want to extract a substring up to and including the first colon. Earlier I posted here asking how to extract just the portion after the first colon: R: split strings ...
0
votes
1answer
36 views

how to remove 3 lines in row if the first line contain a specific character?

I have a data file (which a matrix with 290 lines and 2 columns) like this: # RIR1 ABABABABABABABABAA ABABABABABABABABBA # WR ABABABABABABABABAB BABABBABABABABABAA # BR2 ABABABABABABABBABA ...
3
votes
5answers
85 views

R getting substrings and regular expressions?

I have a set of strings that are file names. I want to extract all characters after the # symbol but before the file extension. For example, one of the file names is: HelloWorld#you.txt I would ...
2
votes
4answers
89 views

Regular expression-based list matching in R

I have two lists (more exactly, character atomic vectors) that I want to compare using regular expressions to produce a sub-set of one of the lists. I can use a 'for' loop for this, but is there some ...
0
votes
1answer
70 views

Escaping less than sign in paste/system command in R

I would like to run head <(cat file.txt) using system within R, but escaping < is a problem. system(paste("head <(cat file.txt)")) sh: -c: line 0: syntax error near unexpected token `(' sh: ...
1
vote
2answers
62 views

R capture everything from pattern until pattern

I am trying to extract a substring in between the two patterns BB and </p>: require("stringr") str = "<notes>\n <p>AA:</p>\n <p>BB: word, otherword</p>\n ...
0
votes
1answer
63 views

R Read and Transform Lines in a File

I have a horribly formatted log file (I cannot changed how it is created) that I wish to do some analysis on. I have a regex that matches specific lines in the log file. These lines contain bits of ...
4
votes
1answer
89 views

Regular Expression to anonymize emails

i use in R the regular expression regexp <- "(^|[^([:alnum:]|.|_)])abc@abc.de($|[^[:alnum:]])" to find the email-adress abc@abc.de in an spefic text and replace it by an anonym-mail-adress. tmp ...
0
votes
3answers
186 views

R regex remove all punctuation except apostrophe

I'm trying to remove all punctuation from a string except apostrophes. Here's my exastr2 <- > str2 <- "this doesn't not have an apostrophe,.!@#$%^&*()" > gsub("[[:punct:,^\\']]"," ...

1 2 3 4 5 7