public final class StaticRegexFullMatch extends PrimitiveOp implements Operand<Boolean>
The input is a string tensor of any shape. The pattern is the regular expression to be matched with 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 StaticRegexFullMatch |
create(Scope scope,
Operand<String> input,
String pattern)
Factory method to create a class to wrap a new StaticRegexFullMatch operation to the graph.
|
Output<Boolean> |
output()
A bool tensor with the same shape as `input`.
|
equals, hashCode, toStringpublic static StaticRegexFullMatch create(Scope scope, Operand<String> input, String pattern)
scope - current graph scopeinput - A string tensor of the text to be processed.pattern - 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.