Regex :: Compile Regular Expressions In AS3?
Oct 12, 2010What is the best (highest-performance/lowest memory-usage, etc.) way to compile a regular expression in AS3? [code]...
View 2 RepliesWhat is the best (highest-performance/lowest memory-usage, etc.) way to compile a regular expression in AS3? [code]...
View 2 RepliesI need 3 different regular expressions one that finds at the beginning of the string a 'D' and a space then a name, so 'D patrickgates hello there' would return 'D patrickgates', or if all possible would return just 'patrickgates' one that will find the @ sign and a name together anywhere in the string so '@patrickgates hello, world' would work and return '@patrickgates' or if at all possible would return just 'patrickgates' one that will find 'RT' and a space and then '@' and the username at the beginning of the string so 'RT @patrickgates' would work if returning just the username and also being true isn't possible with one regex, then I could use one to match to, and one that will delete the 'D' or the '@' or the 'RT'.
View 2 RepliesI have to parse out color information from HTML data. The colors can either be RGB colors or file names to a swatch image. I used [URL] to develop and test the patterns. I copied the AS regular expression code verbatim from the tool into Flex Builder. But, when I exec the pattern against the string I get a null. Here are the patterns and an example of the string (I took the correct HTML tags out so the strings would show correctly):
[Code]....
I'm using regular expression to search word in a string, for example
var patrn:RegExp = new RegExp("\bit's\b");
var str:String = "Heres my problem in it and it's so help me guys.";
trace(patrn.exec(str)); //result is null
My problem is I can't search the data in a string which has special character like ('/,/.). What regular expression string is capable solving my problem?
I'm writing a HTML parser in Flex (AS3) and I need to remove some HTML tags that are not needed.
For example, I want to remove the divs from this code:
<div>
<div>
[code].......
I'm coding in AS2 using CS4 if it matters.Can I use regular expressions in this environment?
View 3 RepliesI'm not very good at regular expressions, but I would like my script to replace
Code:
<a href="somepage.html">
by
Code:
<a href="event:somepage">
i am experimenting with parsing textfiles into different formats, and found the regular expressions in AS3 which should do the job. The problem is, i dont understand how it works.The examples below are just to show the sort of function i am looking for (to start with).[code]
View 10 RepliesI need to convert Java regular expressions into Actionscript regular expressions. There apparently aren't any premade converters, so I'm trying to write one myself. Is there any resource that'd list all the differences? I'm aware of regular-expressions.info, but there doesn't seem to be a comprehensive listing of differences there.
View 2 RepliesI have two strings.One looks like this.
Code:
[12] => Array ( [type] => 2 [name] => Width [value] => 3 )
The other looks like this.
Code:
[13] => Array ( [type] => 7 [name] => Blocks [value] => Array (
[0] => 4
[1] => 4[code].....
In those two strings, I need the Width value and the Block id value. Since the Width only has one value, I am going to put it in an int while the Block values are going into a Vector. Now...how in the world do I get the necessarily information out of this mess.
I'm trying to use regular expressions with the String.replace() method to manipulate a string to replace all instances of a forward slash "/" with a period "."
So for instance, if I start with this String:
"things/stuff/cheese/yum"
I want to convert it to:
"things.stuff.cheese.yum"
Easy enough if I want to replace a letter... let's say I wanted to replace all instances of the letter "e", I would do this:
Code:
var str:String = "things/stuff/cheese/yum";
var myPattern:RegExp = /e/g;
trace(str.replace(myPattern, "."));
// returns: "things/stuff/ch..s./yum"
... but how do I replace all instances of "/"??
I am trying to find if a substring (pattern) is included in a string (path). I use the search method of String class, but if my pattern string includes regular expressions special characters (i.e. ()$), the search function returns (-1). How can I escape these characters?
Code:
// with path="hello$world" and pattern="hello$" this returns -1
function checkPath (pattern:String):int
{
var reg:RegExp = new RegExp(pattern);
return path.search(reg);
}
I've gotten stuck on some issue using AS3 and RegEx. I'm trying to use a RegEx var to match out the ends of a mathematical expressions out of a string. But for some reason, the RegEx only matches the first expression and ignores the one after the conditional.
[Code]....
I want to alter the text color inside a string that has some HTML tags using regular expressions.My question is how can I alter the letters only of the text between html tags and not inside the html tagsI am using something like this:
ActionScript Code:
var exp:RegExp = new RegExp(textfield.text,"i")
str = str.replace(exp, "<font color='#FF0000'>$&</font>");
[code].......
I've written a url validator for a project I am working on. For my requirements it works great, except when the last part for the url goes longer than 22 characters it breaks. My expression:/((https?)://)([^s.]+.)+([^s.]+)(:d+/S+)/i
It expects input that looks like "http(s)://hostname:port/location". When I give it the input: https://demo10:443/111112222233333444445
it works, but if I pass the input https://demo10:443/1111122222333334444455
it breaks. You can test it out easily at[URL].. Oddly, I can't reproduce the problem with just the relevant (I would think) part /(:d+/S+)/i. I can have as many characters after the required / and it works great. Any ideas or known bugs?
[Code]...
so im trying to figure out regular expressions in Flex, but cant for the life of me figure out how to do the following.From the sample below, i need to extract out only "Mike_Mercury".So i have to somehow strip out everything around it with RegExp, or whatever's best. Also, I would need it to work with other samples as well. Im getting this from the reddit api, so id have to extract that same section from a whole bunch of these.
<table>
<tr>
<td>[code].............
I'm trying to find the number of newlines in a string using the Actionscript 3.0 RegExp engine. Using the string.match function and RegExp(" ","g") does not find the newlines in a string which contains newlines. Is there something I need to add to the pattern or something else that I am missing?
View 1 RepliesI'm looking for a regular expression that can remove all the following characters from a string (and Whitespace too): ~ % & ; : " ' , < > ? #
View 3 Repliesgive me the Regular Expression that can check if a given string has any HTML code in it, and coming to think of it I would be bothered with <a href="something">something</a> exactly.
View 2 RepliesI've been struggling with this problem for a while:I have a string containing HTML and I'm using a regular expression to get the characters between the tags. I'm then attempting to apply a TextFormat to those characters.The problem is that I'm using the TextField's "htmlText" property instead of it's "text" property (because I don't want the HTML tags to be visible). So, the character index that's returned from the regular expression is incorrect, when I apply the TextFormat.Here is some sample code which illustrates the problem:
var txt:String = "<b>Sample</b> string with bold text";
var tf:TextField = new TextField();
addChild(tf);
[code].....
find the suitable regular expression to validate a string that has comma separated numbers, for e.g. '1,2,3' or '111,234234,-09', etc. Anything else should be considered invalid. for e.g. '121as23' or '123-123' is invalid. I suppose this must be possible in Flex using regular expression but I can not find the correct regular expression.
[Code]...
I need a AS3 regular expression that allows me to find/replace in strings like these:
[Code]...
I want to be able to replace the spaces at the beginning (inside the > <) for other character. It shouldn't affect the number of character at the right of the spaces or the attributes in the value1 definition.
I need a regular expression pattern for validating the following path directory:
[Code]...
I have a situation where I might be getting one or both of a pair of characters and I want to match either.
For example: str = 'cddd a dfsdf b sdfg ab uyeroi'
I want to match any "a" or "b" or "ab". If the "ab" comes together I want to catch it as a single match (not as two matches "a" "b"). If I get "ab" it will always be in that order ("a" will always precede "b")
What I have is: /[ab]|ab/
But I'm not sure if the ab is going to be a stronger match term than the [ab].
I'm using Flash Develop to build an as3 application using the Flex compiler. In the constructor of a particular class I have written the following code
Code:
//constructor
public function Test(par1:int, arr:/*int*/Array = [1, 2]){ <----- compiler shows error here
[code].....
There is probably no way for this but does anyone know a method of excluding certain functions from a build by use of a meta tag and or compiler option?I want to expose some functions for testing but not have them bloat the application on production. I could create separate testing classes and test for a complier directive or option and only load them if necessary but I like the idea of having the test function on the actual object (in the class).
View 2 RepliesPHP Code:
var ten:uint=10;var twenty:uint=20;var thirty:uint=30;trace(thirty>twenty>ten);//falsetrace(thirty<twenty<ten);//true
is there any documentation on the FlexBuilder "expressions" tab, and what expressions it can accept?As far as I can tell, it can show the value of variables, but that's it: comparisons, function and method calls all fail: [code]this is specific to FB3 Flex Builder. Apparently FB4 Flash Builder is slightly less incompetent.
View 2 RepliesI need to change photo of a person in different face expressions of that person(smile, sad, ...).
View 1 RepliesIs it possible to save more complex expressions in variables and use it later/in an other object?
For example:If i want to store the expression (not the value) of in a variable, for exampe type something in an input textfield and then use it during runtime.
Say i type "mc._x +100" (without "-marks) into the textfield myText on stage (while the movie is running)
[Code]...