![]() |
Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Android™) Regular Expression with Multiple Matches and Named Capture GroupsSee more Regular Expressions ExamplesDemonstrates regular expressions with named capture groups and multiple matches.Note: This example requires Chilkat v11.1.0 or greater.
// Important: Don't forget to include the call to System.loadLibrary // as shown at the bottom of this code sample. package com.test; import android.app.Activity; import com.chilkatsoft.*; import android.widget.TextView; import android.os.Bundle; public class SimpleActivity extends Activity { private static final String TAG = "Chilkat"; // Called when the activity is first created. @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); boolean success = false; CkStringBuilder sb = new CkStringBuilder(); boolean crlf = true; sb.AppendLine("Name: John Smith",crlf); sb.AppendLine("Name: Jack Johnson",crlf); sb.AppendLine("Name: Mary Adams",crlf); Log.i(TAG, sb.getAsString()); // We have the following string: // Name: John Smith // Name: Jack Johnson // Name: Mary Adams String pattern = "Name:\\s+(?<first>\\w+)\\s+(?<last>\\w+)"; CkJsonObject json = new CkJsonObject(); json.put_EmitCompact(false); int timeoutMs = 2000; int numMatches = sb.RegexMatch(pattern,json,timeoutMs); if (numMatches < 0) { // Probably an error in the regular expression. // Suggestion: Use AI to help create and/or diagnose regular expressions. Log.i(TAG, sb.lastErrorText()); return; } // Examine the matches: Log.i(TAG, json.emit()); // Here is the JSON showing the matches. // Important: Capture group 0 always contains the entire match — that is, the portion of the input string that matches the full regular expression. // { // "named": { // "first": 1, // "last": 2 // }, // "match": [ // { // "group": [ // { // "cap": "Name: John Smith", // "idx": 0, // "len": 16 // }, // { // "cap": "John", // "idx": 6, // "len": 4 // }, // { // "cap": "Smith", // "idx": 11, // "len": 5 // } // ] // }, // { // "group": [ // { // "cap": "Name: Jack Johnson", // "idx": 18, // "len": 18 // }, // { // "cap": "Jack", // "idx": 24, // "len": 4 // }, // { // "cap": "Johnson", // "idx": 29, // "len": 7 // } // ] // }, // { // "group": [ // { // "cap": "Name: Mary Adams", // "idx": 38, // "len": 16 // }, // { // "cap": "Mary", // "idx": 44, // "len": 4 // }, // { // "cap": "Adams", // "idx": 49, // "len": 5 // } // ] // } // ] // } // The capture group index is obtained by looking up the name in the JSON result. // For example: int idx_first = json.IntOf("named.first"); int idx_last = json.IntOf("named.last"); int i = 0; int matchCount = json.SizeOfArray("match"); while (i < matchCount) { Log.i(TAG, "Match " + String.valueOf(i + 1) + ":"); json.put_I(i); json.put_J(idx_first); Log.i(TAG, "first: " + json.stringOf("match[i].group[j].cap")); json.put_J(idx_last); Log.i(TAG, "first: " + json.stringOf("match[i].group[j].cap")); Log.i(TAG, ""); i = i + 1; } // Output is: // Match 1: // first: John // first: Smith // // Match 2: // first: Jack // first: Johnson // // Match 3: // first: Mary // first: Adams } static { System.loadLibrary("chilkat"); // Note: If the incorrect library name is passed to System.loadLibrary, // then you will see the following error message at application startup: //"The application <your-application-name> has stopped unexpectedly. Please try again." } } |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.