Programming Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
 
User Name:
Password:
Remember me
Go Back   ASP Free ForumsOtherProgramming Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread ASP Free Forums Sponsor:
  #1  
Old February 16th, 2005, 10:25 AM
lock lock is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Feb 2005
Posts: 2 lock User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 9 m 34 sec
Reputation Power: 0
How To: Change characters in a textarea? Using Javascript

Hello,

I'm fairly new to java so please bare with me!

So, at the moment I have a form with a textarea which is generating XHTML for me, this all works fine. Now, I would like to know how to change characters in the textarea when the "generate" button is clicked.

For example!

Say I had a <br> tag... I would like it to loop through the document that has been loaded into the textarea and change all instances to <br />

I would really appreciate it, if someone could push me in the right direction or perhaps provide some code that I can use to achieve this as it's been really bugging me!

Thanks!

Reply With Quote
  #2  
Old February 16th, 2005, 10:52 AM
Memnoch's Avatar
Memnoch Memnoch is offline
Unholy Moderator
ASP Free God 14th Plane (11500 - 11999 posts)
 
Join Date: Oct 2003
Location: In hell, where did you think?
Posts: 11,760 Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level) 
Time spent in forums: 3 Weeks 5 Days 5 h 22 m 16 sec
Reputation Power: 443
Example: It doesn't work with multiples, but it gives you an idea on how to do it.
Code:
<script type="text/JavaScript">
function generate(strValue)
{
   var newValue;

   newValue = replaceString(strValue, "<br>", "<br/>");
   document.forms[0].textarea.value = newValue;
}
function replaceString(inputStr,SearchPattern,ReplaceWith)
{
   return inputStr.replace(SearchPattern,ReplaceWith);
}
</script>
<form name="form1" method="post" action="">
  <textarea name="textarea"></textarea><br>
  <input type="button" name="Generate" value="Generate" onClick="javascript:generate(textarea.value);">
</form>

Reply With Quote
Reply

Viewing: ASP Free ForumsOtherProgramming Help > How To: Change characters in a textarea? Using Javascript


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 2 hosted by Hostway