-
Notifications
You must be signed in to change notification settings - Fork 191
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
Add BBE for Regex
replace operations
#5679
Merged
poorna2152
merged 5 commits into
ballerina-platform:master
from
poorna2152:regex_replace
Oct 30, 2024
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...s/regexp-operations/regexp_operations.out → ...s-overview/regexp_operations_overview.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
$ bal run regexp_operations.bal | ||
$ bal run regexp_operations_overview.bal | ||
["[email protected]","[email protected]","[email protected]","[email protected]","invalid#@example.n%t"] | ||
["bob","alice","charlie","david"] | ||
["example.net","example.com","example.org","example.xyz"] |
18 changes: 18 additions & 0 deletions
18
examples/regexp-replace-operations/regexp_replace_operations.bal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import ballerina/io; | ||
|
||
public function main() { | ||
string creditCardNumber = "1234-5678-9876-5432"; | ||
string:RegExp pattern = re `\d{4}-\d{4}-\d{4}`; | ||
// Replace the first occurrence of the credit card pattern with a masked representation. | ||
string maskedCardNumber = pattern.replace(creditCardNumber, "****-****-****"); | ||
io:println(maskedCardNumber); | ||
|
||
xml xmlString = | ||
xml `<root><!--comment 1 --><e1>value1</e1><e2>value2</e2><!--comment 2-->></root>`; | ||
|
||
// Regular expression to match XML comments. | ||
string:RegExp commentPattern = re `<!--.*?-->`; | ||
// Replace all occurrences of XML comments with an empty string, effectively removing them. | ||
string commentsRemovedXml = commentPattern.replaceAll(xmlString.toString(), ""); | ||
io:println("XML string with comments removed: ", commentsRemovedXml); | ||
} |
12 changes: 12 additions & 0 deletions
12
examples/regexp-replace-operations/regexp_replace_operations.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# RegExp operations | ||
|
||
The `RegExp` type supports a set of langlib functions to replace parts of strings that match specific patterns. | ||
|
||
::: code regexp_replace_operations.bal ::: | ||
|
||
::: out regexp_replace_operations.out ::: | ||
|
||
## Related links | ||
- [RegExp type](/learn/by-example/regexp-type) | ||
- [RegExp API Docs](https://lib.ballerina.io/ballerina/lang.regexp) | ||
- [string API Docs](https://lib.ballerina.io/ballerina/lang.string) |
2 changes: 2 additions & 0 deletions
2
examples/regexp-replace-operations/regexp_replace_operations.metatags
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
description: This BBE demonstrates how to use the regexp langlib functions relevant to regex replace operations. | ||
keywords: ballerina, ballerina by example, bbe, regexp, RegExp, regex, regular expressions, ballerina regex functions, regexp langlib functions, replace, replaceAll |
3 changes: 3 additions & 0 deletions
3
examples/regexp-replace-operations/regexp_replace_operations.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
$ bal run regexp_replace_operations.bal | ||
****-****-****-5432 | ||
XML string with comments removed: <root><e1>value1</e1><e2>value2</e2>></root> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Should we rename the BBE before this?
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.
@sm1990 do we need to do anything for redirects with this change in BBE name?
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.
@poorna2152 note that the regexp type BBE has a link to this too.
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.
@MaryamZi yes. I'll have to update the Google search index.
@poorna2152 Please share the old BBE url and the new BBE url.
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.
Old link: https://ballerina.io/learn/by-example/regexp-operations/
New link: https://ballerina.io/learn/by-example/regexp_operations_overview/