View Issue Details

IDProjectCategoryView StatusLast Update
0004918CaseTalk ModelerUser Interfacepublic2025-01-17 16:37
ReporterBCP Software Assigned ToBCP Software  
PrioritynormalSeverityfeatureReproducibilityhave not tried
Status resolvedResolutionfixed 
PlatformIntelOSWindowsOS Version11
Target Version14.xFixed in Version14.0 
Summary0004918: Filter OTFTs using RegExp on custom attribute values
DescriptionUsing regexp for filtering custom attribute values would be helpful to detect certain keywords or urls.
TagsNo tags attached.
CaseTalk Editionunknown

Activities

BCP Software

BCP Software

2024-12-30 19:54

administrator   ~0005462

See also:
https://www.regular-expressions.info/
BCP Software

BCP Software

2024-12-30 19:55

administrator   ~0005463

Example: Matching URLs with a Specific Domain

Suppose you want to match URLs that belong to the domain example.com. The following regex pattern will do the trick:

    ^https?:\/\/(www\.)?example\.com(?:\/.*)?$

Explanation:

    ^: Start at the beginning of the URL.
    https?: Match either http or https (the 's' is optional).
    :\/\/: Match the :// that follows the protocol.
    (www\.)?: Match www. if it's present (optional).
    example\.com: Match the domain example.com (the . is escaped to be treated as a literal).
    (?:\/.*)?: Match any path if it's present (optional).
    $: End at the end of the URL.

Issue History

Date Modified Username Field Change
2024-12-30 19:52 BCP Software New Issue
2024-12-30 19:52 BCP Software Status new => assigned
2024-12-30 19:52 BCP Software Assigned To => BCP Software
2024-12-30 19:54 BCP Software Note Added: 0005462
2024-12-30 19:55 BCP Software Note Added: 0005463
2024-12-30 20:10 BCP Software Status assigned => resolved
2024-12-30 20:10 BCP Software Resolution open => fixed
2024-12-30 20:10 BCP Software Fixed in Version => 14.x
2025-01-17 16:37 BCP Software Fixed in Version 14.x => 14.0