Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8880555
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T20:11:10+00:00 2026-06-14T20:11:10+00:00

Possible Duplicate: Extract info inside all parenthesis in R (regex) I have a string

  • 0

Possible Duplicate:
Extract info inside all parenthesis in R (regex)

I have a string

df

Peoplesoft(id-1290)

I like to capture characters between the parentesis, for example. I like to get id-1290 from the above example.

I used this:

x <- regexpr("\\((.*)\\)", df) 

this is giving me numbers like

[1] 10

Is there an easy way to grab text between parentesis using regex in R?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T20:11:11+00:00Added an answer on June 14, 2026 at 8:11 pm

    I prefer to use gsub() for this:

    gsub(".*\\((.*)\\).*", "\\1", df)
    [1] "id-1290"
    

    The regex works like this:

    • Find text inside the parentheses – not your real parentheses, but my extra set of parentheses, i.e. (.*)
    • Return this as a back-reference, \\1

    In other words, substitute all text in the string with the back reference


    If you want to use regexp rather than gsub, then do this:

    x <- regexpr("\\((.*)\\)", df)
    x
    
    [1] 11
    attr(,"match.length")
    [1] 9
    attr(,"useBytes")
    [1] TRUE
    

    This returns a value of 11, i.e. the starting position of the found expression. And note the attribute match.length that indicates how many characters were matched.

    You can extract this with attr:

    attr(x, "match.length")
    [1] 9
    

    And then use substring to extract the characters:

    substring(df, x+1, x+attr(x, "match.length")-2)
    [1] "id-1290"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: extract last part of a url I have a url like this:
Possible Duplicate: php regex , extract phone number from text/html I have following requirement.
Possible Duplicate: A PHP regex to extract php functions from code files I have
Possible Duplicate: Get file name from URI string in C# How to extract file
Possible Duplicate: Executing a shell script inside a jar file. How to extract? I
Possible Duplicate: How do I tokenize a string in C++? I have this text
Possible Duplicate: How to extract a file extension in PHP? I have a variable
Possible Duplicate: How do I extract a tar file in Java? I have tar
Possible Duplicate: How to decode a JSON string in PHP? I would like to
Possible Duplicate: Ruby code to extract host from URL string I found this module

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.