Jump to content
Fórum Script Brasil
  • 0

Ajuda com Expressão Regulares...


Pleyer

Question

Tem uma nomenclatura padrão tipo:

ABC_**_**###_V##.xxx

Onde quando eu recebo a varivael, * pode ser qlqr caracter e # tem que ser numero, ABC_AA_BC121_V01.doc tipo assim estaria Ok...

só para verificar se a Variavel esta de acordo com o "padrão".

Queria só tornar possível a validação disso, alguém me ajuda?

function verificarNomenclatura($pattern,$var) {

if (preg_match($pattern, $var)) {

return true;

} else {

return false;

}

}

$pattren = "/^ABC_[a-zA-Z0-9]{2}_[a-zA-Z0-9]{2}[0-9]{3}_R[0-9]{2}.[a-zA-Z]$/";

$var = ABC_AA_BC121_V01.doc;

$teste = verificarNomenclatura($pattern,$var);

Até ai eu sei, a questão é como criar o "pattern" automatico.. (pois vai variar a nomenclatura)

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

function generetePattern($pattern) {

$pattern = str_replace("*", "[a-zA-Z0-9]", $pattern);

$pattern = str_replace("#", "[0-9]", $pattern);

$pattern = str_replace("xxx", "[a-zA-Z0-9]{3}", $pattern);

$pattern = '/^'.$pattern.'$/';

return $pattern;

}

Acho que deu

Edited by Pleyer
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...