仅保留字符串数据中的字母数字字符

Keep only alphanumeric characters in string data

我正在获取流中的字符串数据,我想只保留字母数字字符。我注意到 Siddhi 提供了一个正则表达式函数,如前所述 here。但问题是它 returns 是一个布尔值而不是修改后的字符串。有没有直接获取修改后的字符串?这是我的代码。

@App:name("strtest")
@App:description("Description of the plan")

-- Please refer to https://docs.wso2.com/display/SP400/Quick+Start+Guide on getting started with SP editor. 

define stream InboundStream(ipstring string);

@sink(type='log', prefix='Modified string')
define stream Opstream(ropstring bool);

from InboundStream 
select str:regexp(ipstring, "^A-Za-z0-9") as ropstring insert into Opstream;

是否有returns修改后的正则表达式字符串的函数?

你不能使用str:regexp()函数来修改字符串它只能用来检查一个字符串是否匹配给定的字符串,相反你可以使用str:replaceAll()函数来删除不需要的字符如下所示

@App:name("strtest")
@App:description("Description of the plan")

define stream InboundStream(ipstring string);

@sink(type='log', prefix='Modified string')
define stream Opstream(ropstring string);

from InboundStream
select str:replaceAll(ipstring,  '[^a-zA-Z0-9]', '') as ropstring
insert into Opstream;

您可以从 here

找到更多关于字符串函数的信息