View Issue Details

IDProjectCategoryView StatusLast Update
0004918CaseTalk ModelerUser Interfacepublic2025-01-17 16:37
ReporterMarco Wobben Assigned ToMarco Wobben  
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

Marco Wobben

Marco Wobben

2024-12-30 19:54

administrator   ~0005462

See also:
https://www.regular-expressions.info/
Marco Wobben

Marco Wobben

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 Marco Wobben New Issue
2024-12-30 19:52 Marco Wobben Status new => assigned
2024-12-30 19:52 Marco Wobben Assigned To => Marco Wobben
2024-12-30 19:54 Marco Wobben Note Added: 0005462
2024-12-30 19:55 Marco Wobben Note Added: 0005463
2024-12-30 20:10 Marco Wobben Status assigned => resolved
2024-12-30 20:10 Marco Wobben Resolution open => fixed
2024-12-30 20:10 Marco Wobben Fixed in Version => 14.x
2025-01-17 16:37 Marco Wobben Fixed in Version 14.x => 14.0