Re: Regular expressions are a fucking nightmare

2015-01-31 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector


  


Re: Regular expressions are a fucking nightmare

@Camlorn:Do you have a skype name? I feel that we could figure out this much easier if we were talking about this on skype.

URL: http://forum.audiogames.net/viewtopic.php?pid=203117#p203117




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Regular expressions are a fucking nightmare

2015-01-31 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector


  


Re: Regular expressions are a fucking nightmare

I do. I do not use Skype for text chat and therefore doubt it would be helpful; Im on an outdated branch of NVDA for a variety of reasons and therefore it doesnt quite work right given the latest Skype updates. I also do not give it out publicly unless I have good reason.But seriously, either read a tutorial and figure it out or just say I want to make a dictionary entry that replaces x with y. There isnt anything which may be said on this topic generally that is not said on a billion internet pages, and regexp isnt the kind of thing that can be explained simply.To answer the original question, the following should replace all sequences of digits with themselves. But the real complexity in this is writing a regexp in the first place, though this one is about as simple as they get. Maybe this tells you what you want to know, but I doubt it.Pattern: (\d+)Replacement: \1Check regexp.

URL: http://forum.audiogames.net/viewtopic.php?pid=203127#p203127




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Regular expressions are a fucking nightmare

2015-01-30 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector


  


Re: Regular expressions are a fucking nightmare

A number replacement. Actually, think you could provide me with all forms of replacements?

URL: http://forum.audiogames.net/viewtopic.php?pid=203037#p203037




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Regular expressions are a fucking nightmare

2015-01-30 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector


  


Re: Regular expressions are a fucking nightmare

Uh. What? Im asking what youre trying to replace in the dictionary. Regular expressions themselves dont have such a concept-any replacement functionality comes from the app. You can match a digit with \d, but anything that you do with that almost certainly needs a lot more.If you havent done it yet, you might read a regular _expression_ tutorial. This one seems pretty decent, and I know that most of the authors other stuff is very good. Or you could tell us what specifically you need and one of us can probably give it to you.

URL: http://forum.audiogames.net/viewtopic.php?pid=203041#p203041




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Regular expressions are a fucking nightmare

2015-01-30 Thread AudioGames . net Forum — Developers room : camlorn via Audiogames-reflector


  


Re: Regular expressions are a fucking nightmare

What replacement are you trying to perform? Im sure we can come up with examples, but its probably easiest just to tell you how yours works.

URL: http://forum.audiogames.net/viewtopic.php?pid=203031#p203031




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Regular expressions are a fucking nightmare

2015-01-30 Thread AudioGames . net Forum — Developers room : Victorious via Audiogames-reflector


  


Re: Regular expressions are a fucking nightmare

Regular expressions do not provide replacement functionality. It is just a really powerful way to find specific strings.

URL: http://forum.audiogames.net/viewtopic.php?pid=203051#p203051




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector