Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What would be the best way to simply take a string like

var myString:String = "Thi$ i$ a T#%%Ible Exam73@";

and make myString = "thiiatibleeam";

or another example

var myString:String = "Totally Awesome String";

and make myString = "totallyawesomestring";

In actionscript 3 Thanks!

share|improve this question

3 Answers

up vote 6 down vote accepted

Extending @Sam OverMars' answer, you can use a combination of String's replace method with a Regex and String's toLowerCase method to get what you're looking for.

var str:String = "Thi$ i$ a T#%%Ible Exam73@";
str = str.toLowerCase(); //thi$ i$ a t#%%ible exam73@
str = str.replace(/[^a-z]/g,""); //thiiatibleexam

The regular expression means:

[^a-z] -- any character *not* in the range a-z
/g     -- global tag means find all, not just find one
share|improve this answer

I think this is the regex you're looking for:

[Bindable]
var myString:String = "Thi$ i$ a T#%%Ible Exam73@";
[Bindable]
var anotherString:String = "";
protected function someFunction():void
{
    anotherString = myString.replace(/[^a-zA-Z]/g, "");
    anotherString = anotherString.toLowerCase();
}
share|improve this answer

I belive what your looking for is:

var myString =  str.replace("find", "replace");

or in your case:

str.replace("$", "");

also, it might be:

str.replace('$', ' ');

//EDIT How about:

 var mySearch:RegExp = /(\t|\n|\s{1,})/g;

 var myString =  str.replace(mySearch, "");
share|improve this answer
if i had to guess, if i did str.replace("$", ""); it would only find an replace dollar sign symbols... I'm curious if there is a way to simply replace ALL possible symbols, spaces, uppercase letters, and numbers. – brybam Aug 11 '11 at 19:19
Thanks Sam H, beat me to it :) – OverMars Aug 11 '11 at 19:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.