How to use Regular Expression in Stock Sync?
What is Regular Expression RegExr?
- Expression of a pattern in a string using special characters and words.
- For example, ([A-Z])\w+
Which fields can Regular Expression be used in Stock Sync?
How to use the Regular Expression?
The user can use this https://regexr.com/
From the above image, the user can see that this expression "^[A-Z]+[0-9]+[-]+[A-Z]+[A-Z]+[ ]" will be ignore the front word "CBD6581-MI".
To remove the comma from the sentences as below:
HP Elitebook 840 G8, 14""FHD, i5-1135G7,8GB, 256GB SSD, LTE 4G
to
HP Elitebook 840 G8 14""FHD i5-1135G7 8GB 256GB SSD LTE 4G
Please wrap the regular expression with *
For example: *^"|\,|"$*
Updated on: 13/03/2025
Thank you!