Forum Discussion
4 Replies
- bojanvelevskiValued Contributor
Hey @Pakhi,
This expression will replace the element that is matched by the regex (/^.*[/]/), with an empty string
''
- PakhiNew Contributor III
Hey can you explain this regex please if you know
- bojanvelevskiValued Contributor
Sure.
. - matches any character except a line break * - means 0 or more of the preceding token [ ] - means a character set \/ - is practically an escaped forward slash character - /
- siwadonEmployee
Basically, the expression removes anything from the beginning of the string to the last forward slash or backslash. In other words, get only the filename from the input string.
See some examples in the screenshot below. The highlighted parts are matched with
^.*[\\\/]
and will be removed.