blob: ab76824a32bbee54690ea4302785f6aa77e43eda [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Kumar Galad0586982008-02-14 20:44:42 -06002/*
3 * Copyright 2008 Freescale Semiconductor, Inc.
Wolfgang Denk855f18e2013-03-23 23:50:34 +00004 * Copyright 2013 Wolfgang Denk <wd@denx.de>
Kumar Galad0586982008-02-14 20:44:42 -06005 */
6
7/*
8 * This file provides a shell like 'expr' function to return.
9 */
10
11#include <common.h>
12#include <config.h>
13#include <command.h>
Roland Gaudigf4f8d8b2021-07-23 12:29:21 +000014#include <ctype.h>
Simon Glassc7694dd2019-08-01 09:46:46 -060015#include <env.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060016#include <log.h>
Simon Glass2c021522020-11-01 14:15:44 -070017#include <malloc.h>
Joe Hershberger2068cea2015-05-11 13:53:13 -050018#include <mapmem.h>
Simon Glass2c021522020-11-01 14:15:44 -070019#include <linux/sizes.h>
Roland Gaudigf4f8d8b2021-07-23 12:29:21 +000020#include "printf.h"
21
22#define MAX_STR_LEN 128
Kumar Galad0586982008-02-14 20:44:42 -060023
Simon Glassf66bee42020-11-01 14:15:43 -070024/**
25 * struct expr_arg: Holds an argument to an expression
26 *
27 * @ival: Integer value (if width is not CMD_DATA_SIZE_STR)
Simon Glass2c021522020-11-01 14:15:44 -070028 * @sval: String value (if width is CMD_DATA_SIZE_STR)
Simon Glassf66bee42020-11-01 14:15:43 -070029 */
30struct expr_arg {
Simon Glass2c021522020-11-01 14:15:44 -070031 union {
32 ulong ival;
33 char *sval;
34 };
Simon Glassf66bee42020-11-01 14:15:43 -070035};
36
37static int get_arg(char *s, int w, struct expr_arg *argp)
Frans Meulenbroeks47ab5ad2010-02-26 14:00:19 +010038{
Simon Glassf66bee42020-11-01 14:15:43 -070039 struct expr_arg arg;
40
Wolfgang Denk482126e2010-06-23 20:50:54 +020041 /*
Joe Hershberger2068cea2015-05-11 13:53:13 -050042 * If the parameter starts with a '*' then assume it is a pointer to
43 * the value we want.
Frans Meulenbroeks47ab5ad2010-02-26 14:00:19 +010044 */
Frans Meulenbroeks47ab5ad2010-02-26 14:00:19 +010045 if (s[0] == '*') {
Joe Hershberger2068cea2015-05-11 13:53:13 -050046 ulong *p;
47 ulong addr;
48 ulong val;
Simon Glass2c021522020-11-01 14:15:44 -070049 int len;
50 char *str;
Joe Hershberger2068cea2015-05-11 13:53:13 -050051
Simon Glass7e5f4602021-07-24 09:03:29 -060052 addr = hextoul(&s[1], NULL);
Frans Meulenbroeks47ab5ad2010-02-26 14:00:19 +010053 switch (w) {
Joe Hershberger2068cea2015-05-11 13:53:13 -050054 case 1:
55 p = map_sysmem(addr, sizeof(uchar));
56 val = (ulong)*(uchar *)p;
57 unmap_sysmem(p);
Simon Glassf66bee42020-11-01 14:15:43 -070058 arg.ival = val;
59 break;
Joe Hershberger2068cea2015-05-11 13:53:13 -050060 case 2:
61 p = map_sysmem(addr, sizeof(ushort));
62 val = (ulong)*(ushort *)p;
63 unmap_sysmem(p);
Simon Glassf66bee42020-11-01 14:15:43 -070064 arg.ival = val;
65 break;
Simon Glass2c021522020-11-01 14:15:44 -070066 case CMD_DATA_SIZE_STR:
67 p = map_sysmem(addr, SZ_64K);
68
69 /* Maximum string length of 64KB plus terminator */
70 len = strnlen((char *)p, SZ_64K) + 1;
71 str = malloc(len);
72 if (!str) {
73 printf("Out of memory\n");
74 return -ENOMEM;
75 }
76 memcpy(str, p, len);
77 str[len - 1] = '\0';
78 unmap_sysmem(p);
79 arg.sval = str;
80 break;
Frans Meulenbroeks47ab5ad2010-02-26 14:00:19 +010081 case 4:
Simon Glass25a43ac2020-11-01 14:15:37 -070082 p = map_sysmem(addr, sizeof(u32));
83 val = *(u32 *)p;
84 unmap_sysmem(p);
Simon Glassf66bee42020-11-01 14:15:43 -070085 arg.ival = val;
86 break;
Joe Hershberger2068cea2015-05-11 13:53:13 -050087 default:
88 p = map_sysmem(addr, sizeof(ulong));
89 val = *p;
90 unmap_sysmem(p);
Simon Glassf66bee42020-11-01 14:15:43 -070091 arg.ival = val;
92 break;
Frans Meulenbroeks47ab5ad2010-02-26 14:00:19 +010093 }
94 } else {
Simon Glass2c021522020-11-01 14:15:44 -070095 if (w == CMD_DATA_SIZE_STR)
96 return -EINVAL;
Simon Glass7e5f4602021-07-24 09:03:29 -060097 arg.ival = hextoul(s, NULL);
Frans Meulenbroeks47ab5ad2010-02-26 14:00:19 +010098 }
Simon Glassf66bee42020-11-01 14:15:43 -070099 *argp = arg;
100
101 return 0;
Frans Meulenbroeks47ab5ad2010-02-26 14:00:19 +0100102}
103
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000104#ifdef CONFIG_REGEX
105
106#include <slre.h>
107
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000108/*
109 * memstr - Find the first substring in memory
110 * @s1: The string to be searched
111 * @s2: The string to search for
112 *
113 * Similar to and based on strstr(),
114 * but strings do not need to be NUL terminated.
115 */
116static char *memstr(const char *s1, int l1, const char *s2, int l2)
117{
118 if (!l2)
119 return (char *)s1;
120
121 while (l1 >= l2) {
122 l1--;
123 if (!memcmp(s1, s2, l2))
124 return (char *)s1;
125 s1++;
126 }
127 return NULL;
128}
129
Simon Glass56331b22020-11-01 14:15:39 -0700130/**
131 * substitute() - Substitute part of one string with another
132 *
133 * This updates @string so that the first occurrence of @old is replaced with
134 * @new
135 *
136 * @string: String buffer containing string to update at the start
137 * @slen: Pointer to current string length, updated on success
138 * @ssize: Size of string buffer
139 * @old: Old string to find in the buffer (no terminator needed)
140 * @olen: Length of @old excluding terminator
141 * @new: New string to replace @old with
142 * @nlen: Length of @new excluding terminator
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100143 * Return: pointer to immediately after the copied @new in @string, or NULL if
Simon Glass56331b22020-11-01 14:15:39 -0700144 * no replacement took place
145 */
146static char *substitute(char *string, int *slen, int ssize,
147 const char *old, int olen, const char *new, int nlen)
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000148{
149 char *p = memstr(string, *slen, old, olen);
150
151 if (p == NULL)
152 return NULL;
153
154 debug("## Match at pos %ld: match len %d, subst len %d\n",
155 (long)(p - string), olen, nlen);
156
157 /* make sure replacement matches */
158 if (*slen + nlen - olen > ssize) {
159 printf("## error: substitution buffer overflow\n");
160 return NULL;
161 }
162
163 /* move tail if needed */
164 if (olen != nlen) {
165 int tail, len;
166
167 len = (olen > nlen) ? olen : nlen;
168
169 tail = ssize - (p + len - string);
170
171 debug("## tail len %d\n", tail);
172
173 memmove(p + nlen, p + olen, tail);
174 }
175
Simon Glass56331b22020-11-01 14:15:39 -0700176 /* insert substitute */
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000177 memcpy(p, new, nlen);
178
179 *slen += nlen - olen;
180
181 return p + nlen;
182}
183
Simon Glassd422c772020-11-01 14:15:40 -0700184int setexpr_regex_sub(char *data, uint data_size, char *nbuf, uint nbuf_size,
185 const char *r, const char *s, bool global)
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000186{
187 struct slre slre;
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000188 char *datap = data;
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000189 int res, len, nlen, loop;
190
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000191 if (slre_compile(&slre, r) == 0) {
192 printf("Error compiling regex: %s\n", slre.err_str);
193 return 1;
194 }
195
Simon Glass56331b22020-11-01 14:15:39 -0700196 len = strlen(data);
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000197 for (loop = 0;; loop++) {
198 struct cap caps[slre.num_caps + 2];
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000199 const char *old;
200 char *np;
201 int i, olen;
202
203 (void) memset(caps, 0, sizeof(caps));
204
Simon Glass8f4aa7d2020-11-01 14:15:42 -0700205 res = slre_match(&slre, datap, len - (datap - data), caps);
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000206
207 debug("Result: %d\n", res);
208
Simon Glass8f4aa7d2020-11-01 14:15:42 -0700209 for (i = 0; i <= slre.num_caps; i++) {
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000210 if (caps[i].len > 0) {
211 debug("Substring %d: [%.*s]\n", i,
212 caps[i].len, caps[i].ptr);
213 }
214 }
215
216 if (res == 0) {
217 if (loop == 0) {
Łukasz Stelmach36b900e2023-08-24 08:10:25 +0200218 debug("%s: No match\n", data);
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000219 } else {
Massimiliano Minella4c736302024-02-08 15:58:27 +0100220 debug("## MATCH ## %s\n", data);
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000221 }
Massimiliano Minella4c736302024-02-08 15:58:27 +0100222 break;
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000223 }
224
Simon Glass56331b22020-11-01 14:15:39 -0700225 if (!s)
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000226 return 1;
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000227
228 old = caps[0].ptr;
229 olen = caps[0].len;
Simon Glass95282292020-11-01 14:15:41 -0700230 nlen = strlen(s);
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000231
Simon Glass56331b22020-11-01 14:15:39 -0700232 if (nlen + 1 >= nbuf_size) {
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000233 printf("## error: pattern buffer overflow: have %d, need %d\n",
Simon Glass56331b22020-11-01 14:15:39 -0700234 nbuf_size, nlen + 1);
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000235 return 1;
236 }
237 strcpy(nbuf, s);
238
239 debug("## SUBST(1) ## %s\n", nbuf);
240
241 /*
242 * Handle back references
243 *
244 * Support for \0 ... \9, where \0 is the
245 * whole matched pattern (similar to &).
246 *
247 * Implementation is a bit simpleminded as
248 * backrefs are substituted sequentially, one
249 * by one. This will lead to somewhat
250 * unexpected results if the replacement
251 * strings contain any \N strings then then
252 * may get substitued, too. We accept this
253 * restriction for the sake of simplicity.
254 */
255 for (i = 0; i < 10; ++i) {
256 char backref[2] = {
257 '\\',
258 '0',
259 };
260
261 if (caps[i].len == 0)
262 break;
263
264 backref[1] += i;
265
266 debug("## BACKREF %d: replace \"%.*s\" by \"%.*s\" in \"%s\"\n",
267 i,
268 2, backref,
269 caps[i].len, caps[i].ptr,
270 nbuf);
271
272 for (np = nbuf;;) {
273 char *p = memstr(np, nlen, backref, 2);
274
275 if (p == NULL)
276 break;
277
278 np = substitute(np, &nlen,
Simon Glass8f4aa7d2020-11-01 14:15:42 -0700279 nbuf_size - (np - nbuf),
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000280 backref, 2,
281 caps[i].ptr, caps[i].len);
282
283 if (np == NULL)
284 return 1;
285 }
286 }
287 debug("## SUBST(2) ## %s\n", nbuf);
288
Simon Glass8f4aa7d2020-11-01 14:15:42 -0700289 datap = substitute(datap, &len, data_size - (datap - data),
290 old, olen, nbuf, nlen);
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000291
292 if (datap == NULL)
293 return 1;
294
295 debug("## REMAINDER: %s\n", datap);
296
297 debug("## RESULT: %s\n", data);
298
299 if (!global)
300 break;
301 }
Simon Glass382bee52017-08-03 12:22:09 -0600302 debug("## FINAL (now env_set()) : %s\n", data);
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000303
Simon Glass56331b22020-11-01 14:15:39 -0700304 return 0;
305}
306
307#define SLRE_BUFSZ 16384
308#define SLRE_PATSZ 4096
309
310/*
311 * Perform regex operations on a environment variable
312 *
313 * Returns 0 if OK, 1 in case of errors.
314 */
315static int regex_sub_var(const char *name, const char *r, const char *s,
316 const char *t, int global)
317{
318 struct slre slre;
319 char data[SLRE_BUFSZ];
320 char nbuf[SLRE_PATSZ];
321 const char *value;
322 int len;
323 int ret;
324
325 if (!name)
326 return 1;
327
328 if (slre_compile(&slre, r) == 0) {
329 printf("Error compiling regex: %s\n", slre.err_str);
330 return 1;
331 }
332
333 if (!t) {
334 value = env_get(name);
335 if (!value) {
336 printf("## Error: variable \"%s\" not defined\n", name);
337 return 1;
338 }
339 t = value;
340 }
341
342 debug("REGEX on %s=%s\n", name, t);
343 debug("REGEX=\"%s\", SUBST=\"%s\", GLOBAL=%d\n", r, s ? s : "<NULL>",
344 global);
345
346 len = strlen(t);
347 if (len + 1 > SLRE_BUFSZ) {
348 printf("## error: subst buffer overflow: have %d, need %d\n",
349 SLRE_BUFSZ, len + 1);
350 return 1;
351 }
352
353 strcpy(data, t);
354
Simon Glassd422c772020-11-01 14:15:40 -0700355 ret = setexpr_regex_sub(data, SLRE_BUFSZ, nbuf, SLRE_PATSZ, r, s,
356 global);
Simon Glass56331b22020-11-01 14:15:39 -0700357 if (ret)
358 return 1;
359
Łukasz Stelmach36b900e2023-08-24 08:10:25 +0200360 debug("%s=%s\n", name, data);
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000361
Simon Glass382bee52017-08-03 12:22:09 -0600362 return env_set(name, data);
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000363}
364#endif
365
Simon Glass09140112020-05-10 11:40:03 -0600366static int do_setexpr(struct cmd_tbl *cmdtp, int flag, int argc,
367 char *const argv[])
Kumar Galad0586982008-02-14 20:44:42 -0600368{
Simon Glassf66bee42020-11-01 14:15:43 -0700369 struct expr_arg aval, bval;
Simon Glass41ef3722013-02-24 17:33:22 +0000370 ulong value;
Simon Glass2c021522020-11-01 14:15:44 -0700371 int ret = 0;
Frans Meulenbroeks47ab5ad2010-02-26 14:00:19 +0100372 int w;
Kumar Galad0586982008-02-14 20:44:42 -0600373
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000374 /*
Roland Gaudigf4f8d8b2021-07-23 12:29:21 +0000375 * We take 3, 5, or 6 arguments, except fmt operation, which
376 * takes 4 to 8 arguments (limited by _maxargs):
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000377 * 3 : setexpr name value
378 * 5 : setexpr name val1 op val2
379 * setexpr name [g]sub r s
380 * 6 : setexpr name [g]sub r s t
Roland Gaudigf4f8d8b2021-07-23 12:29:21 +0000381 * setexpr name fmt format [val1] [val2] [val3] [val4]
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000382 */
383
Roland Gaudigf4f8d8b2021-07-23 12:29:21 +0000384 if (argc < 3)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000385 return CMD_RET_USAGE;
Kumar Galad0586982008-02-14 20:44:42 -0600386
Frans Meulenbroeks47ab5ad2010-02-26 14:00:19 +0100387 w = cmd_get_data_size(argv[0], 4);
388
Simon Glassf66bee42020-11-01 14:15:43 -0700389 if (get_arg(argv[2], w, &aval))
390 return CMD_RET_FAILURE;
Joe Hershberger4823b452012-11-01 16:21:14 +0000391
Roland Gaudigf4f8d8b2021-07-23 12:29:21 +0000392 /* format string assignment: "setexpr name fmt %d value" */
393 if (strcmp(argv[2], "fmt") == 0 && IS_ENABLED(CONFIG_CMD_SETEXPR_FMT)) {
394 char str[MAX_STR_LEN];
395 int result;
396
397 if (argc == 3)
398 return CMD_RET_USAGE;
399
400 result = printf_setexpr(str, sizeof(str), argc - 3, &argv[3]);
401 if (result)
402 return result;
403
404 return env_set(argv[1], str);
405 }
406
407 if (argc == 4 || argc > 6)
408 return CMD_RET_USAGE;
409
Wolfgang Denk103c94b2013-03-23 23:50:33 +0000410 /* plain assignment: "setexpr name value" */
Simon Glass2c021522020-11-01 14:15:44 -0700411 if (argc == 3) {
412 if (w == CMD_DATA_SIZE_STR) {
413 ret = env_set(argv[1], aval.sval);
414 free(aval.sval);
415 } else {
416 ret = env_set_hex(argv[1], aval.ival);
417 }
418
419 return ret;
420 }
Joe Hershberger4823b452012-11-01 16:21:14 +0000421
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000422 /* 5 or 6 args (6 args only with [g]sub) */
423#ifdef CONFIG_REGEX
424 /*
425 * rexep handling: "setexpr name [g]sub r s [t]"
426 * with 5 args, "t" will be NULL
427 */
428 if (strcmp(argv[2], "gsub") == 0)
Simon Glass56331b22020-11-01 14:15:39 -0700429 return regex_sub_var(argv[1], argv[3], argv[4], argv[5], 1);
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000430
431 if (strcmp(argv[2], "sub") == 0)
Simon Glass56331b22020-11-01 14:15:39 -0700432 return regex_sub_var(argv[1], argv[3], argv[4], argv[5], 0);
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000433#endif
434
Wolfgang Denk103c94b2013-03-23 23:50:33 +0000435 /* standard operators: "setexpr name val1 op val2" */
436 if (argc != 5)
437 return CMD_RET_USAGE;
438
439 if (strlen(argv[3]) != 1)
440 return CMD_RET_USAGE;
441
Simon Glass2c021522020-11-01 14:15:44 -0700442 if (get_arg(argv[4], w, &bval)) {
443 if (w == CMD_DATA_SIZE_STR)
444 free(aval.sval);
Simon Glassf66bee42020-11-01 14:15:43 -0700445 return CMD_RET_FAILURE;
Simon Glass2c021522020-11-01 14:15:44 -0700446 }
Kumar Galad0586982008-02-14 20:44:42 -0600447
Simon Glass2c021522020-11-01 14:15:44 -0700448 if (w == CMD_DATA_SIZE_STR) {
449 int len;
450 char *str;
451
452 switch (argv[3][0]) {
453 case '+':
454 len = strlen(aval.sval) + strlen(bval.sval) + 1;
455 str = malloc(len);
456 if (!str) {
457 printf("Out of memory\n");
458 ret = CMD_RET_FAILURE;
459 } else {
460 /* These were copied out and checked earlier */
461 strcpy(str, aval.sval);
462 strcat(str, bval.sval);
463 ret = env_set(argv[1], str);
464 if (ret)
465 printf("Could not set var\n");
466 free(str);
467 }
468 break;
469 default:
470 printf("invalid op\n");
471 ret = 1;
472 }
473 } else {
Simon Glassf66bee42020-11-01 14:15:43 -0700474 ulong a = aval.ival;
475 ulong b = bval.ival;
476
477 switch (argv[3][0]) {
478 case '|':
479 value = a | b;
480 break;
481 case '&':
482 value = a & b;
483 break;
484 case '+':
485 value = a + b;
486 break;
487 case '^':
488 value = a ^ b;
489 break;
490 case '-':
491 value = a - b;
492 break;
493 case '*':
494 value = a * b;
495 break;
496 case '/':
497 value = a / b;
498 break;
499 case '%':
500 value = a % b;
501 break;
502 default:
503 printf("invalid op\n");
504 return 1;
505 }
506
507 env_set_hex(argv[1], value);
Kumar Galad0586982008-02-14 20:44:42 -0600508 }
509
Simon Glass2c021522020-11-01 14:15:44 -0700510 if (w == CMD_DATA_SIZE_STR) {
511 free(aval.sval);
512 free(bval.sval);
513 }
514
515 return ret;
Kumar Galad0586982008-02-14 20:44:42 -0600516}
517
518U_BOOT_CMD(
Roland Gaudigf4f8d8b2021-07-23 12:29:21 +0000519 setexpr, 8, 0, do_setexpr,
Peter Tyser2fb26042009-01-27 18:03:12 -0600520 "set environment variable as the result of eval expression",
Simon Glass2c021522020-11-01 14:15:44 -0700521 "[.b, .w, .l, .s] name [*]value1 <op> [*]value2\n"
Kumar Galad0586982008-02-14 20:44:42 -0600522 " - set environment variable 'name' to the result of the evaluated\n"
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000523 " expression specified by <op>. <op> can be &, |, ^, +, -, *, /, %\n"
Simon Glass2c021522020-11-01 14:15:44 -0700524 " (for strings only + is supported)\n"
Joe Hershberger4823b452012-11-01 16:21:14 +0000525 " size argument is only meaningful if value1 and/or value2 are\n"
526 " memory addresses (*)\n"
Wolfgang Denk103c94b2013-03-23 23:50:33 +0000527 "setexpr[.b, .w, .l] name [*]value\n"
528 " - load a value into a variable"
Roland Gaudigf4f8d8b2021-07-23 12:29:21 +0000529#ifdef CONFIG_CMD_SETEXPR_FMT
530 "\n"
531 "setexpr name fmt <format> [value1] [value2] [value3] [value4]\n"
532 " - set environment variable 'name' to the result of the bash like\n"
533 " format string evaluation of value."
534#endif
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000535#ifdef CONFIG_REGEX
536 "\n"
537 "setexpr name gsub r s [t]\n"
538 " - For each substring matching the regular expression <r> in the\n"
539 " string <t>, substitute the string <s>. The result is\n"
540 " assigned to <name>. If <t> is not supplied, use the old\n"
Massimiliano Minella4c736302024-02-08 15:58:27 +0100541 " value of <name>. If no substring matching <r> is found in <t>,\n"
542 " assign <t> to <name>.\n"
Wolfgang Denk855f18e2013-03-23 23:50:34 +0000543 "setexpr name sub r s [t]\n"
544 " - Just like gsub(), but replace only the first matching substring"
545#endif
Kumar Galad0586982008-02-14 20:44:42 -0600546);