07-26-2024
SASvtaUser
Calcite | Level 5
Member since
07-01-2024
- 9 Posts
- 0 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by SASvtaUser
Subject Views Posted 806 07-26-2024 02:38 AM 808 07-26-2024 02:37 AM 1032 07-16-2024 03:08 AM 870 07-02-2024 02:42 AM 727 07-02-2024 02:15 AM 956 07-01-2024 05:49 AM 979 07-01-2024 05:09 AM 805 07-01-2024 04:55 AM 811 07-01-2024 04:52 AM -
Activity Feed for SASvtaUser
- Posted Re: SAS VTA 8.5: How to export "Text Parsing" node Kept terms list and Dropped Terms list on SAS Data Science. 07-26-2024 02:38 AM
- Posted Re: SAS VTA 8.5: How to export "Text Parsing" node Kept terms list and Dropped Terms list on SAS Data Science. 07-26-2024 02:37 AM
- Posted SAS VTA 8.5: How to export "Text Parsing" node Kept terms list and Dropped Terms list? on SAS Data Science. 07-16-2024 03:08 AM
- Posted Re: REGEX rule in VTA 8.5. Lower cased words were also matched when using REGEX:[A-Z] on SAS Data Science. 07-02-2024 02:42 AM
- Posted Re: REGEX rule in VTA 8.5 on SAS Data Science. 07-02-2024 02:15 AM
- Posted Re: REGEX rule in VTA 8.5. Lower cased words were also matched when using REGEX:[A-Z] on SAS Data Science. 07-01-2024 05:49 AM
- Posted REGEX rule in VTA 8.5. Lower cased words were also matched when using REGEX:[A-Z] on SAS Data Science. 07-01-2024 05:09 AM
- Posted Re: REGEX rule in VTA 8.5 on SAS Data Science. 07-01-2024 04:55 AM
- Posted REGEX rule in VTA 8.5 on SAS Data Science. 07-01-2024 04:52 AM
07-26-2024
02:38 AM
5/5 being must have, I would rate this having 4/5 importance.
... View more
07-26-2024
02:37 AM
Thankyou! I will try
... View more
07-16-2024
03:08 AM
Hi SAS Community, I'm using VTA 8.5. Would like to ask how to export the Kept terms/Dropped terms in the "Text Parsing" node? The table should be stored in some working library in CAS am I right? If yes, how may I locate and export it as excel or csv? I'm creating a stop word list/ synonym list and want to build on the Kept terms/Dropped terms. While the interactive window is useful, I still need to type in each term manually. It's not that practical when I have thousands of terms. Please refer to the Dropped terms below. Just want to export this. Thank you for your help!!
... View more
07-02-2024
02:42 AM
Update: I tried the proposed solution, still not working... The issue is still, uppercase or lowercase words are matched regardless.
... View more
07-02-2024
02:15 AM
Could you elaborate on how to check 0A or 0D0A (using $hex.?) in VTA please?
... View more
07-01-2024
05:49 AM
Thank you!!! I will try out!! Could also ask on why is REGEX:0125\-[A-Z] also returning lower case (0125-a) as a match?
... View more
07-01-2024
05:09 AM
Hi all, I'm new to SAS VTA so some mercy please! I'm trying to use REGEX rules to capture Uppercase or Proper case only, according to 8.5 user documentation: "To add uppercase characters, use the following rule:" REGEX:[A-Fa-f] However I tried to define REGEX:0125\-[A-Z], but the match is in both lower and upper case, as shown in the attachment. So first question is why lower case were also matched? And second, if I want to match the proper cased words within a sentence, how may I do that? Example: Stark Industries is a pioneering multinational conglomerate known for its cutting-edge advancements in technology and innovation. Founded by Howard Stark, it has grown into a global leader in aerospace, defense, and advanced manufacturing. With a commitment to pushing the boundaries of what's possible, Stark Industries continues to shape the future through its revolutionary products and solutions. Say I would like to only match the words in bold in the above paragraph.... Loads of thanks!
... View more
07-01-2024
04:55 AM
Allow me to add some more context please! The reason I'm trying Regex instead of other means is because my source data is very unstructured, and I'm trying to Use REGEX rule type to capture very specific scenarios.
... View more
07-01-2024
04:52 AM
Hi all, I'm new to SAS and would like to extract entity out from text. The predefined concept is inaccurate so I'm trying to use custom regex rules. The sample text is like: ===================== Email header Name Jon Doe Designation Super Spy Email header2 Full name Sam Smith Junior Designation Super Spy2 ===================== So I defined a rule: REGEX:\n(?:Name|Full name)\s?\n[^\n]+\n I intent to match based on: 1) Start with new line character \n 2) non-capturing group (?:Name|Full name). [However I noticed that "Name" or "Full name" are still been captured regardless] 3) Optional space character after Name or Full name 4) match a new line character \n 5) capture the full name using [^\n]+ 6) End with newline character \n This REGEX rule returns 0 match, the issue seems to be from the newline character match. Kindly advice please!
... View more