Hub
Pricing About
WorkflowWorkflow

RegEx match complete word with special characters - using Rule Engine, Column Expressions, String Manipulation, and Java Snippets

RegexStringSearchJavaRegexMatcher
+5
mlauber71 profile image
Draft Latest edits on 
Nov 2, 2022 8:34 AM
Drag & drop
Like
Download workflow
Workflow preview
RegEx match complete word with special characters ------------------ Rule Engine $my_text$ MATCHES /^.*(S\\.A\\.S\\.).*$/ => "contains S.A.S." Column Expressions else if (regexMatcher(column("my_text"), "^.*(S\.A\.S\.).*$")) {true} String Manipulation regexMatcher($my_text$, "^.*(S\.A\.S\.).*$") Java Snippet (simple) Pattern p = Pattern.compile("(^.*)(S\.A\.S\.)(.*$)"); Matcher m = p.matcher($my_text$); Java Snippet Pattern p = Pattern.compile("^.*(S\\.A\\.S\\.).*$"); Matcher m = p.matcher(c_my_text);

External resources

  • (48551) - forum entry
  • Component by natanaeldgsantos - Regex Find All
  • Component by takbb - Regex String Stripper
  • Component by takbb - Regex String Replacer
  • more RegEx examples from the KNIME hub
  • victor_palacios - Various Examples of Regex in KNIME
  • hayasaka - Various Examples of Regex in KNIME
  • KNIME and Java - simple if then else - with some string conversion
  • RegEx - remove line breaks and special characters from column name
Loading deploymentsLoading ad hoc jobs

Used extensions & nodes

Created with KNIME Analytics Platform version 4.6.3
  • Go to item
    KNIME Base nodesTrusted extension

    KNIME AG, Zurich, Switzerland

    Version 4.6.2

    knime
  • Go to item
    KNIME ExpressionsTrusted extension

    KNIME AG, Zurich, Switzerland

    Version 4.6.0

    knime
  • Go to item
    KNIME JavasnippetTrusted extension

    KNIME AG, Zurich, Switzerland

    Version 4.6.0

    knime

Legal

By using or downloading the workflow, you agree to our terms and conditions.

KNIME
Open for Innovation

KNIME AG
Talacker 50
8001 Zurich, Switzerland
  • Software
  • Getting started
  • Documentation
  • Courses + Certification
  • Solutions
  • KNIME Hub
  • KNIME Forum
  • Blog
  • Events
  • Partner
  • Developers
  • KNIME Home
  • Careers
  • Contact us
Download KNIME Analytics Platform Read more about KNIME Business Hub
© 2025 KNIME AG. All rights reserved.
  • Trademarks
  • Imprint
  • Privacy
  • Terms & Conditions
  • Data Processing Agreement
  • Credits