I'm a bit new to regex and am looking to search for multiple lines/instaces of some wildcard strings such as *8768, *9875, *2353.
I would like to pull all instances of these (within one file) rather than searching them individually.
Any help is greatly appreciated. I've tried things such as *8768,*9875 etc...
If I understand what you are asking, it is a regular expression like this:
This matches the three sets of digit strings at beginning of line only.
I suggest much better solution. Task in my case: add http://google.com/ path before each record and import multiple fields.
CSV single field value (all images just have filenames, separate by |):
"123.jpg|345.jpg|567.jpg"
Tamper 1st plugin: find and replace by REGEXP: pattern: /([a-zA-Z0-9]*)./ replacement: http://google.com/$1
Tamper 2nd plugin: explode setting: explode by |
In this case you don't need any additinal fields mappings and can use 1 field in CSV
To get the lines that contain the texts
8768
,9875
or2353
, use:What it means:
If you do want the literal
*
char, you'd have to escape it: