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

  • Home
  • SEARCH
  • 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 8814745
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T04:12:24+00:00 2026-06-14T04:12:24+00:00

I do a split(‘ ‘) over an string and I want to pull the

  • 0

I do a split(' ') over an string and I want to pull the first element of the returned string in order to get the rest of the string.

f.e. "THIS IS AN AMAZING STRING".split(' ');

I want to get all the words but THIS. This is: IS AN AMAZING STRING

The string will always have at least one blank space between the first and the second word because I will put it hard coded

Is there a function that makes this?
thank you

  • 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-14T04:12:25+00:00Added an answer on June 14, 2026 at 4:12 am

    try

    string X = "THIS IS AN AMAZING STRING";
    string Y = (X.IndexOf ( " " ) < 0) ? string.Empty : X.Substring (X.IndexOf ( " " )  + 1); // Y = IS AN AMAZING STRING
    

    As per comment (IF X is guaranteed to be a valid string with at least one space) a simpler version without checking etc.:

    string Y = X.Substring (X.IndexOf ( " " )  + 1); 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want split a string like this: C:\Program\files\images\flower.jpg but, using the following code: String[]
I want to split a file(suppose a mp3) into four parts.I have tried this
I want to split a string with ? as the delimiter. str.split(?)[0] fails.
i want to split the String = Asaf_ER_Army by the ER seperator. the Split
I'm trying to split a string at the first space and only keep the
split this String using function split. Here is my code: String data= data^data; String[]
I essentially want to split up a string based on the sentences, therefore (for
I need to split a string that looks like this 1052 root 0 SW<
I want to split a string value according to <br/> An example string: *
I want to split a string between two semicolons (:). i.e., BOOLEAN: Mr. Coffee

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.