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 8992779
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T23:02:21+00:00 2026-06-15T23:02:21+00:00

Consider the input c(foo 1, bar 2, baz) . I’d like to turn this

  • 0

Consider the input c("foo 1", "bar 2", "baz"). I’d like to turn this into c(1,2,NA) (basically extract the numbers from each string, or if none exist turn it into an NA). My first pass looks like this:

funNums = as.numeric(
                  regmatches(x$Fun,
                    regexpr('\\d+', x$Fun, perl = T)))

where x$Fun is my input vector. The output I get from this though is c(1,2) since regmatches throws away things which don’t match. How can I get it to include NAs?

  • 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-15T23:02:22+00:00Added an answer on June 15, 2026 at 11:02 pm
    X <- c("foo 1", "bar 2", "baz")
    as.numeric(gsub("([^[:digit:]]*)", "", X))
    # [1]  1  2 NA
    

    (Do be aware that when passed a string like "1 to 2", this will return the number 12, which may not be what you’d like it to do.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Background Consider the following input: <Foo Bar=bar Baz=1 Bax=bax > After processing, I need
Consider the input: =sec1= some-line some-other-line foo bar=baz =sec2= c=baz If I wish to
Consider the following: <label>Range from <input name='min_value'/> to <input name='max_value' /> </label> Is this
Consider some function foo : def foo(input) input * 2 end How to get
Consider the following example : <input type=text id=#ab>cd.ef value=foo /> <script type=text/javascript> var id
Consider this C# snippet: static string input = null; static string output = null;
consider following scenario input string = WIPR.NS i have to replace this with WIPR2.NS
Consider this code: def foo(foo_input): if 0 <= foo_input <= 100: return f_input This
Consider this code : HTML: <table> <tr> <td>Option 1</td> <td><input type='checkbox' id='option1' /></td> </tr>
Suppose I have a piece of code like this: int foo(int a, int b,

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.