-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Methods of RegExp and String #141
Methods of RegExp and String #141
Conversation
Hi @fsdude would you please resolve the conflicts, or kindly inform if unavailable to? Thank you. |
Hello! Yeah.. lately I've been busy with some work. I don't know if I'll be able to fix this soon, sorry for that =) |
…de/pt.javascript.info into fsdude-02-regexp-character-classes
…script.info into fsdude-17-regexp-methods
@odsantos the PRs #147, #141 (this one) and #274 all translated parts of the text that weren't meant to have been translated. The parts in question are the `pattern:`, `subject:` and `match:` decorators used in the Regex chapters, as they're used by the site builder literally. Changing this might break the builds! My evidence for this is that all of them match the class names used in the HTML output of the site. |
|
||
1. If the `regexp` doesn't have flag `pattern:g`, then it returns the first match as an array with capturing groups and properties `index` (position of the match), `input` (input string, equals `str`): | ||
1. Se a `regexp` não tiver a flag `padrão:g`, ela retornará a primeira correspondência como uma matriz com a captura de grupos e propriedades `index` (posição da correspondência), `input` (string de entrada, igual a `str`): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The pattern:
syntax shouldn't be translated
``` | ||
|
||
2. If the `regexp` has flag `pattern:g`, then it returns an array of all matches as strings, without capturing groups and other details. | ||
2. Se a `regexp` tiver a flag `padrão:g`, ela retornará uma matriz com todas as correspondências como strings, sem capturar grupos e outros detalhes. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The pattern:
syntax shouldn't be translated
|
||
let result = str.match(/Java(Script)/g); | ||
|
||
alert( result[0] ); // JavaScript | ||
alert( result.length ); // 1 | ||
``` | ||
|
||
3. If there are no matches, no matter if there's flag `pattern:g` or not, `null` is returned. | ||
3. Se não houver correspondências, não importa se há flag `padrão:g` ou não, `null` é retornado. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The pattern:
syntax shouldn't be translated
|
||
```js | ||
let result = str.match(regexp) || []; | ||
``` | ||
|
||
## str.matchAll(regexp) | ||
|
||
[recent browser="new"] | ||
[navegador recente="new"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This shouldn't be translated
|
||
To find all hyphens, we need to use not the string `"-"`, but a regexp `pattern:/-/g`, with the obligatory `pattern:g` flag: | ||
Para encontrar todos os hífens, não precisamos usar a string `"-"`, mas a regexp `padrão:/-/g`, com a flag obrigatória `padrão:g`: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The pattern:
syntax shouldn't be translated
|
||
If there's no `pattern:g`, then `regexp.exec(str)` returns the first match exactly as `str.match(regexp)`. This behavior doesn't bring anything new. | ||
Se não houver `padrão:g`, a `regexp.exec(str)` retorna a primeira correspondência exatamente como `str.match(regexp)`. Esse comportamento não traz nada de novo. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The pattern:
syntax shouldn't be translated
- The next such call starts the search from position `regexp.lastIndex`, returns the next match and saves the position after it in `regexp.lastIndex`. | ||
- ...And so on. | ||
- If there are no matches, `regexp.exec` returns `null` and resets `regexp.lastIndex` to `0`. | ||
Mas se houver a flag `padrão:g`, então: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The pattern:
syntax shouldn't be translated
``` | ||
|
||
If the regexp has flag `pattern:y`, then the search will be performed exactly at the position `regexp.lastIndex`, not any further. | ||
Se o regexp tiver flag `padrão:y`, então a pesquisa será realizada exatamente na posição `regexp.lastIndex`, nada mais. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The pattern:
syntax shouldn't be translated
|
||
Let's replace flag `pattern:g` with `pattern:y` in the example above. There will be no matches, as there's no word at position `5`: | ||
Vamos substituir a flag `padrão:g` pela `padrão:y` no exemplo acima. Não haverá correspondências, como não haverá palavra na posição `3`: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The pattern:
syntax shouldn't be translated
``` | ||
|
||
If the regexp has flag `pattern:g`, then `regexp.test` looks from `regexp.lastIndex` property and updates this property, just like `regexp.exec`. | ||
Se a regexp tiver a flag `padrão:g`, então `regexp.test` procura a partir da propriedade `regexp.lastIndex` e atualiza esta propriedade, assim como `regexp.exec`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The pattern:
syntax shouldn't be translated
@peruibeloko I'll include your corrections as soon as possible. Thank you. |
@odsantos, @jonnathan-ls, @peruibeloko, what do you recommend colleagues to be done in this pull request? |
…es suggestions according to code review
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@nazarepiedady @odsantos @peruibeloko
I updated the PR with the master branch, fixed merge conflicts, translated pending content and applied the suggestions highlighted as code review 3565c17
Can you evaluate this PR again?
I'm also leaving my LGTM as a review
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jonnathan-ls, is all pending work solved?
|
||
## str.match(regexp) | ||
|
||
The method `str.match(regexp)` finds matches for `regexp` in the string `str`. | ||
O método `str.macth(regexp)` pesquisa correspondências para `regexp` na string `str`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jonnathan-ls, thanks for saving some of your time to work on this. It is very praiseworthy.
I would like to point out a little spelling mistake where it is written str.macth
should be str.match
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the observation, I added the correction
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was an excellent work, let's go forward.
@jonnathan-ls, you need to approve and merge if you have time for that, too. |
I left my approval, but I don't see any point in merging without the other reviewers who registered observations not reviewing it again yet. I don't think it's worth closing change requests from other code reviewers |
@jonnathan-ls, we will wait most likely for centuries if we wait for others even when we have two approvals. The current pull request is 4 years old. It is too much time. |
@jonnathan-ls, let's do this way. You approve, and we will wait at least one week to get one more approval to merge the changes. |
@peruibeloko, could you help us review this 4 years old pull request? |
LGTM! |
Thank you 💖 I updated the Progress Issue #1 🎉 🎉 🎉 |
Translation to portuguese done. Followed the english version again.
Source file can be found: https://github.com/javascript-tutorial/en.javascript.info/blob/master/9-regular-expressions/17-regexp-methods/article.md