| This is the talk page for discussing improvements to the Regular expression article. This is not a forum for general discussion of the subject of the article. |
Article policies
|
| Find sources: Google (books · news · scholar · free images · WP refs) · FENS · JSTOR · TWL |
| Archives: 1, 2Auto-archiving period: 3 months |
| This It is of interest to the following WikiProjects: | |||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||
| Text or other creative content from this version of Regular expression examples was copied or moved into Regular expression with this edit on 22:28, 9 January 2012. The former page's history now serves to provide attribution for that content in the latter page, and it must not be deleted as long as the latter page exists. |
Hi hope this is appropriate to add this comment. There is a regular expression puzzle web site called regexcrossword.com. I have found this very useful for getting the finer points/practise at writing good regular expressions. Enjoy. Robin48gx (talk) 09:24, 16 September 2024 (UTC)
For accessibility and WP:NPOV, perhaps "The quick brown fox jumps over the lazy dog" with the pattern [aeiou]+. Looks like the current image was taken from https://regexr.com/.
If I understand correctly the current /h[aeiou]+/g in the thumbnail is an ECMAScript convention1 but doesn't mention so, hence also in combination would drop the prefix / and suffix /g.
1 https://262.ecma-international.org/5.1/#sec-7.8.5 31.20.106.40 (talk) 11:47, 10 October 2023 (UTC)
(?<=\.) {2,}(?=[A-Z]), I assume because the image came first (it's from the sentence spacing article) and the regexp was written to fit.[aeiou]+ does seem too simple, as in practice (assuming that we're keeping things simple and only using a single highlight colour) the output would be the same as for [aeiou]. Belbury (talk) 17:18, 26 February 2024 (UTC)
/h[aeiou]+/g seems fine for any of these. - Jochen Burghardt (talk) 17:12, 27 February 2024 (UTC)
/r[aeiouy]+/ to get a more interesting image; if considering "y" as a vowel is a problem, let me know; I can remove it from the pattern. - Jochen Burghardt (talk) 19:12, 12 March 2024 (UTC)
/r[aeiouy]+/g which finds all occurrences of the letter r followed by one or more vowels or the letter y.Romans isn't highlighted in the example. Not sure if it would be better to update the image and include an /i option in the caption, or update the caption to a lower case r followed by one or more lower-case ...Belbury (talk) 13:50, 13 March 2024 (UTC)
/g (which seems unavoidable) and /i. An alternative could be /[Rr][aeiou]/g, which is unnecessary complicated, however (exemplifying [] just once is sufficient). - Jochen Burghardt (talk) 14:47, 14 March 2024 (UTC)The text on the main page says this: "Every regular expression can be written solely in terms of the Kleene star and set unions over finite words." I think concatenation is also needed; if you have only Kleene star and unions over finite sets of words, you cannot make {1} conc {0}* (sets of words starting with 1 followed by arbitrarily many zeroes). 137.132.217.132 (talk) 09:07, 12 March 2024 (UTC)
Both "look-ahead" and "lookahead" are used in the Regular_expression#Assertions section of the page. I imagine "look-ahead" is incorrect, but I will leave it up to someone else to either clarify that both are correct or remove the incorrect one. Llamasaylol (talk) 17:32, 29 May 2024 (UTC)
With the java script regex engine you get look aheads (neg and pos). But with the python regex engine you get look behinds as well. Robin48gx (talk) 09:25, 16 September 2024 (UTC)
Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.