0

I have tried to parse a huge amount of logs from Amazon S3 bucket.

So far, I created and configured a sample pipe, as described in the tutorial video. However for some reason my RegEx is screwed up after the pipe is activated.

Originally, the regex was:

(\S+)\s...

and after saving it became

(S+)s...

which obviously doesn't make any sense to any regex egine I am aware of )

So can somebody please explain to me - what is the correct form of writing a regular expression for the DataPipe component?

jdevelop
  • 12,176
  • 10
  • 56
  • 112

1 Answers1

1

So far - they are missing explanation of regex format. To use escape symbols - you need to put 4 backslashes, like

(\\\\S+)
jdevelop
  • 12,176
  • 10
  • 56
  • 112