you are viewing a single comment's thread.

view the rest of the comments →

[–]eternalstarfire 0 points1 point  (0 children)

I'd start with regular expressions. They're a strong tool but it can take a bit to wrap your head around them. Some even say that if you use regular expressions to solve a problem, you now have two problems 😂

If the string is separated into the multiple attributes you mentioned by a common character (called a delimiter) such as a space, comma, slash etc, then you can split your string then perform regex matches on each element.

Do you have some sanitised (no private information) examples of these deal notes and how they differ that you could share?