---
title: "Remove space from string"  
description: "Remove space from string"  
author: "Anonymous User"  
published: 2011-02-02  
updated: 2011-02-07  
canonical: https://www.mindstick.com/forum/163/remove-space-from-string  
category: "javascript"  
tags: ["javascript"]  
reading_time: 1 minute  

---

# Remove space from string

how use trim [method](https://www.mindstick.com/forum/166/webservice-method) in [javascript](https://www.mindstick.com/articles/874/how-to-create-watermark-text-for-textbox-by-using-javascript)\
give the [sample](https://www.mindstick.com/news/2174/mars-mission-by-nasa-prepares-for-tests) of its?\

## Replies

### Reply by Amit Singh

hi vikas,\
in javascript, not using the trim method.\
but we replace the start and end space of any give string by javascript as given sample\

```
<script language="JavaScript" type="text/javascript">    functionff() {    var str="  check thetrim condition here      ";        str=str.replace(/^\s+|\s+$/g,"");        alert(str);    }</script>
```

\
\


---

Original Source: https://www.mindstick.com/forum/163/remove-space-from-string

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
