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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T23:43:56+00:00 2026-06-16T23:43:56+00:00

Possible Duplicate: How do I trim a string in javascript? I have below string

  • 0

Possible Duplicate:
How do I trim a string in javascript?

I have below string which comes from ajax response

"\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\r\n\tERROR: Profile : NOT SUCCESS\nCODE        : 2\nCATEGORY    : TECHNICAL\nSEVERITY    : null\nENVIRONMENT : DEV\nAPPLICATION : DEV\nDESCRIPTION : Profile: INVOCATION UNHANDLED EXCEPTION [null]\nDESCRIPTION : Profile: [ServiceAttribute]\nDESCRIPTION : Profile: Instance ID = 20130108124231841\n\r\n\r\n"

I am using below code to trim the string on both ends.

var text = originalRequest.responseText.replace(/^\s+|\s+$/g, ”);

However it’s removing \n in between message which is coming from ajax response.
What i would like to have in the end is

"ERROR: Profile : NOT SUCCESS
CODE        : 2
CATEGORY    : TECHNICAL
SEVERITY    : null
ENVIRONMENT : DEV
APPLICATION : DEV
DESCRIPTION : Profile: INVOCATION UNHANDLED EXCEPTION [null]
DESCRIPTION : Profile: [ServiceAttribute]
DESCRIPTION : Profile: Instance ID = 20130108124231841"

how do i get this? Trying different ways from past 1 hour 🙁

  • 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-16T23:43:58+00:00Added an answer on June 16, 2026 at 11:43 pm

    Just use trim();:

    var s = "\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\r\n\tERROR: Profile : NOT SUCCESS\nCODE        : 2\nCATEGORY    : TECHNICAL\nSEVERITY    : null\nENVIRONMENT : DEV\nAPPLICATION : DEV\nDESCRIPTION : Profile: INVOCATION UNHANDLED EXCEPTION [null]\nDESCRIPTION : Profile: [ServiceAttribute]\nDESCRIPTION : Profile: Instance ID = 20130108124231841\n\r\n\r\n";
    console.log(s.trim());
    
    "ERROR: Profile : NOT SUCCESS
    CODE        : 2
    CATEGORY    : TECHNICAL
    SEVERITY    : null
    ENVIRONMENT : DEV
    APPLICATION : DEV
    DESCRIPTION : Profile: INVOCATION UNHANDLED EXCEPTION [null]
    DESCRIPTION : Profile: [ServiceAttribute]
    DESCRIPTION : Profile: Instance ID = 20130108124231841"
    

    If trim()‘s not available (IE 8-), try this polyfill:

    if(!String.prototype.trim) {
        String.prototype.trim = function () { 
            return this.replace(/^[\s\uFEFF]+|[\s\uFEFF]+$/g,'');
        });
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: .trim() in JavaScript not working in IE i have the following code
Possible Duplicate: Trim spaces from start and end of string I would like to
Possible Duplicate: How do I trim a string in javascript? By using replace method
Possible Duplicate: trim left characters in sql server? I have a query below that
Possible Duplicate: How do I trim a string in javascript? Using JavaScript without any
Possible Duplicate: How to trim whitespace from bash variable? I have searched and attempted
Possible Duplicate: Replace multiple whitespaces with single whitespace in JavaScript string I have used
Possible Duplicate: .trim() in JavaScript not working in IE Is there any way to
Possible Duplicate: How do I trim a string in javascript? I need to remove
Possible Duplicate: Variable doesn’t get returned from AJAX function I have this function: function

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.