Skip to Main Content
HCL Domino Ideas Portal

Welcome to the #dominoforever Product Ideas Forum! The place where you can submit product ideas and enhancement request. We encourage you to participate by voting on, commenting on, and creating new ideas. All new ideas will be evaluated by HCL Product Management & Engineering teams, and the next steps will be communicated. While not all submitted ideas will be executed upon, community feedback will play a key role in influencing which ideas are and when they will be implemented.

For more information and upcoming events around #dominoforever, please visit our Destination Domino Page

119 VOTE
Status Assessment
Workspace Domino
Categories Integration
Created by Guest
Created on Mar 1, 2019

LotusScript Support for Regex

Regex is a very common need, but currently LotusScript does not support it. All other major language support this.

  • Attach files
      Drop here to upload
    • Guest
      Reply
      |
      Sep 25, 2024

      As allready noted in previous posts a general solution should run on all plattforms. Similar to COM objects java is not available in Nomad. Nomad / Nomad Web is going to be the most used client for a standard user.
      Ideas/WIshes for additional functions directly in Lotusscript are targeting all platforms/clients.

    • Admin
    • Guest
      Reply
      |
      Aug 5, 2024

      Set regexp = CreateObject("VBScript.RegExp")

      Does not work in Nomad. It says

      Operation not supported on this platform

      So we need a native Regex support urgently.

    • Guest
      Reply
      |
      Nov 10, 2020

      I used something like this a while ago which still works.

      Dim x As String
      Dim regexp As Variant

      x = "5s"

      Set regexp = CreateObject("VBScript.RegExp")
      regexp.Global = True
      regexp.Pattern = "^[0-9]+$"
      Print regexp.Test(x)
    • Guest
      Reply
      |
      Jun 4, 2020
      wrapping LotusScript around the JVM

      This is a workaround. Moreover, the present direction of development is to abandon Java on the client.

    • Guest
      Reply
      |
      Apr 8, 2019

      * most lotusscript lacks

    • Guest
      Reply
      |
      Apr 8, 2019

      We support this so far with a UseLSX wrapper around java.util.regex.Pattern. Seems that most things this site suggests are doable within the domino environment by wrapping LotusScript around the JVM.

       

       

       
    • Guest
      Reply
      |
      Mar 1, 2019

      both regex replace and regex match would be good to have.