我想检查一个字符串是否包含以public class Main extends Application {
private Pane root = new Pane();
private static Button btnNewGame = new Button( "New Game?" );
private Parent createContent() {
root.setPrefSize( 1280, 720 );
timer.start();
return root;
}
void cleanup() {
timer.stop();
root.getChildren().clear();
}
public void startGame( Stage stage ) {
Scene scene = new Scene( createContent() );
btnNewGame.setOnAction( e -> {
restart( stage );
});
stage.setScene( scene );
stage.setTitle( "ZZZZZnake - Von Christoph Gabauer" );
stage.getIcons().add( new Image( Main.class.getResourceAsStream( "icon.png" ) ) );
stage.setResizable( false );
stage.show();
}
void restart( Stage stage ) {
cleanup();
start( stage );
timer.start();
}
@Override
public void start( Stage primaryStage ) {
startGame( primaryStage );
}
}
开头和以{{
结尾的某些单词
当前我正在使用此:
}}
但是当字符串是这样的时候:
preg_match_all('/\{{.*?\}}/', $string, $matches, PREG_OFFSET_CAPTURE);
正则表达式返回以下内容:
<p>{{locatie} {{locatie}} {locatie} {locatie}}</p>
正则表达式必须检查每个单词,而不是整个字符串,以检查是否匹配。 我的正则表达式必须更改什么?