[Flashcoders] How to handle String the best way

2010-07-22 Thread Cor
Hi List, I am trying to find how to best compare 2 strings(word by word). I have 2 texts, one fully written and one abbreviated. The texts have exactly the same amount of words and they are in the same order. So in the text field one word is highlighted. The user has to fill in the abbreviation

RE: [Flashcoders] How to handle String the best way

2010-07-22 Thread David Hunter
Not entirely sure if i understand what you want to do, but you could use a regular expression to strip out any punctuation or unwanted characters. String.split() breaks a string into an array of strings by using a specified delimiter which could be a space in this situation, so each word is

RE: [Flashcoders] How to handle String the best way

2010-07-22 Thread Cor
Thanks David. I think you understood exactly what I want. The String.split() was also what I had in mind, but I don't know how to do a regular expression to strip out any punctuation or unwanted characters. Do you have an example of such action? -Original Message- From:

Re: [Flashcoders] How to handle String the best way

2010-07-22 Thread Matt S.
Can you give us two actual String samples, of text A and text B, that you're trying to compare? .m On Thu, Jul 22, 2010 at 3:46 AM, Cor c...@chello.nl wrote: Hi List, I am trying to find how to best compare 2 strings(word by word). I have 2 texts, one fully written and one abbreviated. The

Re: [Flashcoders] How to handle String the best way

2010-07-22 Thread Glen Pike
Hi, Something like /(\w)+)/gi or /([a-zA-Z])+/gi if you are being strict on just having letters. You can experiment with Grant Skinners RegExr tool - Google that cos I have no link :) Glen On 22/07/2010 14:10, Cor wrote: Thanks David. I think you understood exactly what I want. The

RE: [Flashcoders] How to handle String the best way

2010-07-22 Thread Cor
I can't publish the actual strings, because they contain military issues. So I will have to create some fake strings. But mainly every full text (our max is 800 characters) can be used and every abbreviation can be 'fake', like the this: Full: These words are the text at its full length. I will

Re: [Flashcoders] How to handle String the best way

2010-07-22 Thread Matt S.
In the end though, aren't you really checking each answer not against the abbreviation but against a correct answer, eg if the abbreviation is: sec and the correct answer is second and the user writes section as their answer, that would be incorrect. But if you compared sec to section, you

RE: [Flashcoders] How to handle String the best way

2010-07-22 Thread Cor
That is correct. The users are offered a long text and they have to rewrite this to a correct abbreviated text. In the Army, we have about a million abbreviations (or acronyms?) which are used in every written text. Our officers have to able to read and write this without the possibility to look

[Flashcoders] FLV to AVI converter

2010-07-22 Thread Slava Paperno (Bridge)
Could someone please suggest an FLV to AVI converter for Windows they have used and liked? It doesn't have to be free, but it must retain as much video and audio quality of the FLV file as possible, for further processing. Thanks, Slava ___

Re: [Flashcoders] FITC Excuses

2010-07-22 Thread Ktu
Can I participate in pong using a brick as my controller? Sigh... On Wed, Jul 21, 2010 at 6:16 PM, co...@moock.org co...@moock.org wrote: you could tell them you'd get to be part of the world's first ever 600-player game of pong! http://www.moock.org/blog/archives/000302.html this

RE: [Flashcoders] How to handle String the best way

2010-07-22 Thread David Hunter
String.replace() then a regular expression like /[,\.!\?:;\\\/]/g and replace it with nothing: . You'll probably want to check which characters to remove but remember to use an escape slash for certain characters. Haven't tried it but there are some examples and lots of help in the docs and

RE: [Flashcoders] How to handle String the best way

2010-07-22 Thread Cor
Thanks again David. RegExp are a bit scary for me too. :-) -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of David Hunter Sent: donderdag 22 juli 2010 21:14 To: flashcoders@chattyfig.figleaf.com Subject:

Re: [Flashcoders] How to handle String the best way

2010-07-22 Thread Karl DeSaulniers
Hi guys, Sorry to barge in, but I found this site to be helpful with RegExp. Might help you too. Its in javascript, but found it easily translated into AS. http://lawrence.ecorp.net/inet/samples/regexp-intro.php Best, Karl On Jul 22, 2010, at 2:37 PM, Cor wrote: Thanks again David.

Re: [Flashcoders] How to handle String the best way

2010-07-22 Thread Matt Perkins
Grant Skinner has a great tool for building and testing RegEx http://gskinner.com/RegExr/ I've used it a lot lately - i'm new to RegEx and this makes it a lot less intimidating! On 7/22/2010 3:54 PM, Karl DeSaulniers wrote: Hi guys, Sorry to barge in, but I found this site to be helpful

Re: [Flashcoders] How to handle String the best way

2010-07-22 Thread Karl DeSaulniers
Ah yes. That's a great one too. Karl Sent from losPhone On Jul 22, 2010, at 3:07 PM, Matt Perkins nudoru.m...@gmail.com wrote: Grant Skinner has a great tool for building and testing RegEx http://gskinner.com/RegExr/ I've used it a lot lately - i'm new to RegEx and this makes it a lot

Re: [Flashcoders] How to handle String the best way

2010-07-22 Thread Taka Kojima
Seeing as you have specific abbreviations, I don't understand why Regular Expressions are entering into this. You should have the abbreviations and their actual words stored in a database (maybe an XML doc somewhere), then just compare each one, one a word to abbreviation basis. Regular

Re: [Flashcoders] How to handle String the best way

2010-07-22 Thread Matt S.
Yeah that was my question, albeit expressed in a much more convoluted way. In the end its just a right/wrong quiz. .m On Thu, Jul 22, 2010 at 4:42 PM, Taka Kojima t...@gigafied.com wrote: Seeing as you have specific abbreviations, I don't understand why Regular Expressions are entering into

RE: [Flashcoders] How to handle String the best way

2010-07-22 Thread David Hunter
i think the regular expression is to strip out unwanted characters like punctuation. comparing strings would be done by another process. From: mattsp...@gmail.com Date: Thu, 22 Jul 2010 16:51:03 -0400 Subject: Re: [Flashcoders] How to handle String the best way To:

Re: [Flashcoders] How to handle String the best way

2010-07-22 Thread Steven Sacks
http://www.regular-expressions.info/ ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] FLV to AVI converter

2010-07-22 Thread Tony Fouts
Use this software a lot . . . and it is free: http://www.formatoz.com/ Tony On Thu, Jul 22, 2010 at 11:33 AM, Slava Paperno (Bridge) sl...@lexiconbridge.com wrote: Could someone please suggest an FLV to AVI converter for Windows they have used and liked? It doesn't have to be free, but it