@Operator public final class RegexFullMatch extends PrimitiveOp implements Operand<Boolean>
The input is a string tensor of any shape. The pattern is a scalar string tensor which is applied to every element of the input tensor. The boolean values (True or False) of the output tensor indicate if the input matches the regex pattern provided.
The pattern follows the re2 syntax (https://github.com/google/re2/wiki/Syntax)
operation| Modifier and Type | Method and Description |
|---|---|
Output<Boolean> |
asOutput()
Returns the symbolic handle of a tensor.
|
static RegexFullMatch |
create(Scope scope,
Operand<String> input,
Operand<String> pattern)
Factory method to create a class to wrap a new RegexFullMatch operation to the graph.
|
Output<Boolean> |
output()
A bool tensor with the same shape as `input`.
|
equals, hashCode, toStringpublic static RegexFullMatch create(Scope scope, Operand<String> input, Operand<String> pattern)
scope - current graph scopeinput - A string tensor of the text to be processed.pattern - A scalar string tensor containing the regular expression to match the input.public Output<Boolean> asOutput()
OperandInputs to TensorFlow operations are outputs of another TensorFlow operation. This method is used to obtain a symbolic handle that represents the computation of the input.
asOutput in interface Operand<Boolean>OperationBuilder.addInput(Output)Copyright © 2015–2019. All rights reserved.