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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T19:35:29+00:00 2026-05-28T19:35:29+00:00

Regular Expressions kick my pants every time I try to use them. I’m using

  • 0

Regular Expressions kick my pants every time I try to use them. I’m using GWT’s RegExp, and I want to extract two values from the following text:

Token[cc8ikjw2-fa7b-4cd6-b6677-04b723ef41 , 2ac7ce11-14b2-4de4-bm51-c22f23ea23af]

I want to pick out the two codes and assign them to variables while ignoring the ‘Token[‘ characters.

Please help me. You are my only hope.

  • 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-05-28T19:35:30+00:00Added an answer on May 28, 2026 at 7:35 pm

    Just a quick solution here (obviously may not work if there are wild variations to the string format, but works for the provided example):

        RegExp pattern = RegExp.compile( "Token\\[(\\S*)\\s*,\\s*(\\S*)\\]" );
        MatchResult result =
            pattern.exec( "Token[cc8ikjw2-fa7b-4cd6-b6677-04b723ef41 , 2ac7ce11-14b2-4de4-bm51-c22f23ea23af]" );
        String token1 = result.getGroup( 1 );
        String token2 = result.getGroup( 2 );
    

    The actual regular expression to match the tokens in given example is: Token\[(\S*)\s*,\s*(\S*)\], but obviously you need to escape all back slashes in a Java string.

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

Sidebar

Related Questions

When using regular expressions we generally, if not always use them to extract some
I want to use regular expressions (Perl compatible) to be able to find a
Regular expressions can become quite complex. The lack of white space makes them difficult
Using regular expressions, what is the simplest way to fetch a websites HTML and
Using regular expressions in C#, is there any way to find and remove duplicate
Using regular expressions in .NET with the pattern ^%[^%]+%\Z and the string few)few% I
I am using regular expressions for matching only digits, minimum 10 digits, maximum 14.
I am using regular expressions in php to match postcodes found in a string.
I have seen many regular expressions for Url validation. In my case I want
I'm working with regular expressions (Regex) but not finding the exact output. I want

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.